160293197379e522c870c4a28462804207bab505dAdam Lesinski/*
260293197379e522c870c4a28462804207bab505dAdam Lesinski * Copyright (C) 2014 The Android Open Source Project
360293197379e522c870c4a28462804207bab505dAdam Lesinski *
460293197379e522c870c4a28462804207bab505dAdam Lesinski * Licensed under the Apache License, Version 2.0 (the "License");
560293197379e522c870c4a28462804207bab505dAdam Lesinski * you may not use this file except in compliance with the License.
660293197379e522c870c4a28462804207bab505dAdam Lesinski * You may obtain a copy of the License at
760293197379e522c870c4a28462804207bab505dAdam Lesinski *
860293197379e522c870c4a28462804207bab505dAdam Lesinski *      http://www.apache.org/licenses/LICENSE-2.0
960293197379e522c870c4a28462804207bab505dAdam Lesinski *
1060293197379e522c870c4a28462804207bab505dAdam Lesinski * Unless required by applicable law or agreed to in writing, software
1160293197379e522c870c4a28462804207bab505dAdam Lesinski * distributed under the License is distributed on an "AS IS" BASIS,
1260293197379e522c870c4a28462804207bab505dAdam Lesinski * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1360293197379e522c870c4a28462804207bab505dAdam Lesinski * See the License for the specific language governing permissions and
1460293197379e522c870c4a28462804207bab505dAdam Lesinski * limitations under the License.
1560293197379e522c870c4a28462804207bab505dAdam Lesinski */
1660293197379e522c870c4a28462804207bab505dAdam Lesinski
17ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski#ifndef __LIB_R_H
18ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski#define __LIB_R_H
19ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski
20ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinskinamespace lib {
21ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinskinamespace R {
22ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski
23ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinskinamespace attr {
24ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski    enum {
25ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski        attr1       = 0x02010000, // default
268ac51d14b614ba6a12df2ba90d50a01f50d548aaAdam Lesinski        attr2       = 0x02010001, // default
27ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski    };
28ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski}
29ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski
30ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinskinamespace style {
31ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski    enum {
32ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski        Theme        = 0x02020000,  // default
33ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski    };
34ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski}
35ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski
36ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski} // namespace R
37ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski} // namespace lib
38ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski
39ccf25c7bf69eb8c04246e3f79da31b52c2922a80Adam Lesinski#endif // __LIB_R_H
40