67 lines
1.3 KiB
C++
67 lines
1.3 KiB
C++
/*
|
|
* Copyright (C) 2015 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef DATA_APPASLIB_R_H_
|
|
#define DATA_APPASLIB_R_H_
|
|
|
|
#include <cstdint>
|
|
|
|
namespace com {
|
|
namespace android {
|
|
namespace appaslib {
|
|
|
|
namespace lib {
|
|
|
|
struct R {
|
|
struct integer {
|
|
enum : uint32_t {
|
|
number1 = 0x02020000, // default
|
|
};
|
|
};
|
|
|
|
struct array {
|
|
enum : uint32_t {
|
|
integerArray1 = 0x02030000, // default
|
|
};
|
|
};
|
|
};
|
|
|
|
} // namespace lib
|
|
|
|
namespace app {
|
|
|
|
struct R {
|
|
struct integer {
|
|
enum : uint32_t {
|
|
number1 = 0x7f020000, // default
|
|
};
|
|
};
|
|
|
|
struct array {
|
|
enum : uint32_t {
|
|
integerArray1 = 0x7f030000, // default
|
|
};
|
|
};
|
|
};
|
|
|
|
} // namespace app
|
|
|
|
} // namespace appaslib
|
|
} // namespace android
|
|
} // namespace com
|
|
|
|
#endif // DATA_APPASLIB_R_H_
|