Home | History | Annotate | Download | only in styles
      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       StyleFour = 0x7f020003u,
     52       StyleFive = 0x7f020004u,
     53       StyleSix = 0x7f020005u,
     54     };
     55   };
     56 };
     57 
     58 }  // namespace app
     59 }  // namespace android
     60 }  // namespace com
     61 
     62 #endif  // TEST_DATA_STYLES_R_H_
     63