R.h revision ccf25c7bf69eb8c04246e3f79da31b52c2922a80
1ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski#ifndef __LIB_R_H
2ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski#define __LIB_R_H
3ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski
4ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinskinamespace lib {
5ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinskinamespace R {
6ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski
7ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinskinamespace attr {
8ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski    enum {
9ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski        attr1       = 0x02010000, // default
10ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski    };
11ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski}
12ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski
13ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinskinamespace style {
14ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski    enum {
15ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski        Theme        = 0x02020000,  // default
16ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski    };
17ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski}
18ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski
19ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski} // namespace R
20ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski} // namespace lib
21ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski
22ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski#endif // __LIB_R_H
23