R.h revision 9d9cc6233c7035c32d3b8622aa5dc7d413193dc7
1#ifndef __ANDROID_R_H
2#define __ANDROID_R_H
3
4namespace android {
5namespace R {
6
7namespace attr {
8    enum {
9        background  = 0x01010000, // default
10        foreground  = 0x01010001, // default
11    };
12}
13
14namespace style {
15    enum {
16        Theme_One      = 0x01020000,   // default
17    };
18}
19
20} // namespace R
21} // namespace android
22
23#endif // __ANDROID_R_H
24