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
22namespace com {
23namespace android {
24namespace sparse {
25
26struct R {
27  struct integer {
28    enum : uint32_t {
29      foo_0 = 0x7f010000,
30      foo_1 = 0x7f010000,
31      foo_2 = 0x7f010000,
32      foo_3 = 0x7f010000,
33      foo_4 = 0x7f010000,
34      foo_5 = 0x7f010000,
35      foo_6 = 0x7f010000,
36      foo_7 = 0x7f010000,
37      foo_8 = 0x7f010000,
38      foo_9 = 0x7f010000,
39    };
40  };
41
42  struct string {
43    enum : uint32_t {
44      foo_999 = 0x7f0203e7,
45    };
46  };
47};
48
49}  // namespace sparse
50}  // namespace android
51}  // namespace com
52
53#endif /* TESTS_DATA_SPARSE_R_H_ */
54