1 /*
2  * Copyright (C) 2017 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 TESTS_DATA_SPARSE_R_H_
18 #define TESTS_DATA_SPARSE_R_H_
19 
20 #include <cstdint>
21 
22 namespace com {
23 namespace android {
24 namespace sparse {
25 
26 struct R {
27   struct integer {
28     enum : uint32_t {
29       foo_0 = 0x7f010000,
30       foo_1 = 0x7f010001,
31       foo_2 = 0x7f010002,
32       foo_3 = 0x7f010003,
33       foo_4 = 0x7f010004,
34       foo_5 = 0x7f010005,
35       foo_6 = 0x7f010006,
36       foo_7 = 0x7f010007,
37       foo_8 = 0x7f010008,
38       foo_9 = 0x7f010009,
39     };
40   };
41 
42   struct string {
43     enum : uint32_t {
44       foo_999 = 0x7f0203e7,
45       only_land = 0x7f0203e8
46     };
47   };
48 };
49 
50 }  // namespace sparse
51 }  // namespace android
52 }  // namespace com
53 
54 #endif /* TESTS_DATA_SPARSE_R_H_ */
55