blob: 8b5ef82e1bd3add19705b8bf3daff454c2c9324d [file] [log] [blame]
Paul Keithbde3a832020-01-27 20:19:30 -06001/*
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 Keithaf24a5d2020-01-27 20:19:23 -060017#include "ConsumerIr.h"
18
Paul Keithb43a8d52020-01-27 20:19:45 -060019#include <samsung_ir.h>
Paul Keith0ab516d2020-01-27 20:19:37 -060020
Paul Keithaf24a5d2020-01-27 20:19:23 -060021namespace android {
22namespace hardware {
23namespace ir {
24namespace V1_0 {
25namespace implementation {
26
27// Methods from ::android::hardware::ir::V1_0::IConsumerIr follow.
28Return<bool> ConsumerIr::transmit(int32_t carrierFreq, const hidl_vec<int32_t>& pattern) {
29 // TODO implement
30 return bool {};
31}
32
33Return<void> ConsumerIr::getCarrierFreqs(getCarrierFreqs_cb _hidl_cb) {
34 // TODO implement
35 return Void();
36}
37
Paul Keithaf24a5d2020-01-27 20:19:23 -060038} // namespace implementation
39} // namespace V1_0
40} // namespace ir
41} // namespace hardware
42} // namespace android