23 lines
294 B
C
23 lines
294 B
C
|
#ifndef __LIB_R_H
|
||
|
#define __LIB_R_H
|
||
|
|
||
|
namespace lib {
|
||
|
namespace R {
|
||
|
|
||
|
namespace attr {
|
||
|
enum {
|
||
|
attr1 = 0x02010000, // default
|
||
|
};
|
||
|
}
|
||
|
|
||
|
namespace style {
|
||
|
enum {
|
||
|
Theme = 0x02020000, // default
|
||
|
};
|
||
|
}
|
||
|
|
||
|
} // namespace R
|
||
|
} // namespace lib
|
||
|
|
||
|
#endif // __LIB_R_H
|