blob: 6fcf88dc59b4699f17835cc6971b36610af70a26 [file] [log] [blame]
Jan Altensen1a843362019-01-20 01:40:51 +01001/*
2 * Copyright (C) 2019 The LineageOS 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#include "DisplayModes.h"
18
19namespace vendor {
20namespace lineage {
21namespace livedisplay {
22namespace V2_0 {
23namespace implementation {
24
25// Methods from ::vendor::lineage::livedisplay::V2_0::IDisplayModes follow.
26Return<void> DisplayModes::getDisplayModes(getDisplayModes_cb _hidl_cb) {
27 // TODO implement
28 return Void();
29}
30
31Return<void> DisplayModes::getCurrentDisplayMode(getCurrentDisplayMode_cb _hidl_cb) {
32 // TODO implement
33 return Void();
34}
35
36Return<void> DisplayModes::getDefaultDisplayMode(getDefaultDisplayMode_cb _hidl_cb) {
37 // TODO implement
38 return Void();
39}
40
41Return<bool> DisplayModes::setDisplayMode(int32_t modeID, bool makeDefault) {
42 // TODO implement
43 return bool {};
44}
45
46
47// Methods from ::android::hidl::base::V1_0::IBase follow.
48
49//IDisplayModes* HIDL_FETCH_IDisplayModes(const char* /* name */) {
50 //return new DisplayModes();
51//}
52//
53} // namespace implementation
54} // namespace V2_0
55} // namespace livedisplay
56} // namespace lineage
57} // namespace vendor