Paul Keith | bde3a83 | 2020-01-27 20:19:30 -0600 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2020 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 | |
Paul Keith | af24a5d | 2020-01-27 20:19:23 -0600 | [diff] [blame] | 17 | #include "ConsumerIr.h" |
| 18 | |
Paul Keith | b43a8d5 | 2020-01-27 20:19:45 -0600 | [diff] [blame^] | 19 | #include <samsung_ir.h> |
Paul Keith | 0ab516d | 2020-01-27 20:19:37 -0600 | [diff] [blame] | 20 | |
Paul Keith | af24a5d | 2020-01-27 20:19:23 -0600 | [diff] [blame] | 21 | namespace android { |
| 22 | namespace hardware { |
| 23 | namespace ir { |
| 24 | namespace V1_0 { |
| 25 | namespace implementation { |
| 26 | |
| 27 | // Methods from ::android::hardware::ir::V1_0::IConsumerIr follow. |
| 28 | Return<bool> ConsumerIr::transmit(int32_t carrierFreq, const hidl_vec<int32_t>& pattern) { |
| 29 | // TODO implement |
| 30 | return bool {}; |
| 31 | } |
| 32 | |
| 33 | Return<void> ConsumerIr::getCarrierFreqs(getCarrierFreqs_cb _hidl_cb) { |
| 34 | // TODO implement |
| 35 | return Void(); |
| 36 | } |
| 37 | |
Paul Keith | af24a5d | 2020-01-27 20:19:23 -0600 | [diff] [blame] | 38 | } // namespace implementation |
| 39 | } // namespace V1_0 |
| 40 | } // namespace ir |
| 41 | } // namespace hardware |
| 42 | } // namespace android |