• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2016 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 TEST_DATA_STYLES_R_H_
18 #define TEST_DATA_STYLES_R_H_
19 
20 #include <cstdint>
21 
22 namespace com {
23 namespace android {
24 namespace app {
25 
26 struct R {
27   struct attr {
28     enum : uint32_t {
29       attr_one = 0x7f010000u,
30       attr_two = 0x7f010001u,
31       attr_three = 0x7f010002u,
32       attr_four = 0x7f010003u,
33       attr_five = 0x7f010004u,
34       attr_indirect = 0x7f010005u,
35       attr_six = 0x7f010006u,
36       attr_empty = 0x7f010007u,
37     };
38   };
39 
40   struct string {
41     enum : uint32_t {
42       string_one = 0x7f030000u,
43     };
44   };
45 
46   struct style {
47     enum : uint32_t {
48       StyleOne = 0x7f020000u,
49       StyleTwo = 0x7f020001u,
50       StyleThree = 0x7f020002u,
51     };
52   };
53 };
54 
55 }  // namespace app
56 }  // namespace android
57 }  // namespace com
58 
59 #endif  // TEST_DATA_STYLES_R_H_
60