diff options
author | Tao Bao <tbao@google.com> | 2017-08-22 20:38:02 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2017-08-22 20:38:02 +0200 |
commit | cdc6fcaa4716e2642083e0ff85caf5fc479fddc7 (patch) | |
tree | 366f8fbdf3193a2635844b1f49d275afc22f89d6 /wear_device.cpp | |
parent | Merge "Move Image/ImageChunk/PatchChunk declaration into header files" am: b4bc57ed39 (diff) | |
parent | Merge changes I5d7a6baa,Id0fb2d4e (diff) | |
download | android_bootable_recovery-cdc6fcaa4716e2642083e0ff85caf5fc479fddc7.tar android_bootable_recovery-cdc6fcaa4716e2642083e0ff85caf5fc479fddc7.tar.gz android_bootable_recovery-cdc6fcaa4716e2642083e0ff85caf5fc479fddc7.tar.bz2 android_bootable_recovery-cdc6fcaa4716e2642083e0ff85caf5fc479fddc7.tar.lz android_bootable_recovery-cdc6fcaa4716e2642083e0ff85caf5fc479fddc7.tar.xz android_bootable_recovery-cdc6fcaa4716e2642083e0ff85caf5fc479fddc7.tar.zst android_bootable_recovery-cdc6fcaa4716e2642083e0ff85caf5fc479fddc7.zip |
Diffstat (limited to 'wear_device.cpp')
-rw-r--r-- | wear_device.cpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/wear_device.cpp b/wear_device.cpp new file mode 100644 index 000000000..3268130b0 --- /dev/null +++ b/wear_device.cpp @@ -0,0 +1,23 @@ +/* + * Copyright (C) 2017 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. + */ + +#include "device.h" +#include "wear_ui.h" + +Device* make_device() { + return new Device(new WearRecoveryUI); +} + |