1/*
2 * Copyright (C) 2014 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 __BASE_R_H
18#define __BASE_R_H
19
20namespace base {
21namespace R {
22
23namespace attr {
24    enum {
25        attr1       = 0x7f010000, // default
26        attr2       = 0x7f010001, // default
27    };
28}
29
30namespace layout {
31    enum {
32        main        = 0x7f020000,  // default, fr-sw600dp-v13
33    };
34}
35
36namespace string {
37    enum {
38        test1       = 0x7f030000,   // default
39        test2       = 0x7f030001,   // default
40        density     = 0x7f030002,   // default
41
42        test3       = 0x7f080000,   // default (in feature)
43        test4       = 0x7f080001,   // default (in feature)
44    };
45}
46
47namespace integer {
48    enum {
49        number1     = 0x7f040000,   // default, sv, vs
50        number2     = 0x7f040001,   // default
51
52        test3       = 0x7f090000,   // default (in feature)
53    };
54}
55
56namespace style {
57    enum {
58        Theme1      = 0x7f050000,   // default
59        Theme2      = 0x7f050001,   // default
60    };
61}
62
63namespace array {
64    enum {
65        integerArray1 = 0x7f060000,   // default
66    };
67}
68
69} // namespace R
70} // namespace base
71
72#endif // __BASE_R_H
73