1 /* 2 * Copyright (C) 2015 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 #ifndef __APPASLIB_R_H 18 #define __APPASLIB_R_H 19 20 namespace appaslib { 21 namespace R { 22 namespace lib { 23 namespace integer { 24 enum { 25 number1 = 0x02020000, // default 26 }; 27 } 28 29 namespace array { 30 enum { 31 integerArray1 = 0x02030000, // default 32 }; 33 } 34 } // namespace lib 35 36 namespace app { 37 namespace integer { 38 enum { 39 number1 = 0x7f020000, // default 40 }; 41 } 42 43 namespace array { 44 enum { 45 integerArray1 = 0x7f030000, // default 46 }; 47 } 48 } // namespace app 49 } // namespace R 50 } // namespace appaslib 51 52 #endif // __APPASLIB_R_H 53