Paul Keith | 5b3bd86 | 2019-01-08 23:45:03 +0100 | [diff] [blame^] | 1 | /* |
| 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 "KeyDisabler.h" |
| 18 | |
| 19 | namespace vendor { |
| 20 | namespace lineage { |
| 21 | namespace touch { |
| 22 | namespace V1_0 { |
| 23 | namespace implementation { |
| 24 | |
| 25 | // Methods from ::vendor::lineage::touch::V1_0::IKeyDisabler follow. |
| 26 | Return<void> KeyDisabler::setEnabled(bool enabled) { |
| 27 | // TODO implement |
| 28 | return Void(); |
| 29 | } |
| 30 | |
| 31 | |
| 32 | // Methods from ::android::hidl::base::V1_0::IBase follow. |
| 33 | |
| 34 | //IKeyDisabler* HIDL_FETCH_IKeyDisabler(const char* /* name */) { |
| 35 | //return new KeyDisabler(); |
| 36 | //} |
| 37 | // |
| 38 | } // namespace implementation |
| 39 | } // namespace V1_0 |
| 40 | } // namespace touch |
| 41 | } // namespace lineage |
| 42 | } // namespace vendor |