blob: 8e199ed7e54557bf577e59def1b4daa354ba2ab5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* Copyright 2016 The Android Open Source Project
*
* SPDX-License-Identifier: Apache-2.0
*/
#define LOG_TAG "android.hardware.ir@1.0-service"
#include <android/hardware/ir/1.0/IConsumerIr.h>
#include <hidl/LegacySupport.h>
using android::hardware::ir::V1_0::IConsumerIr;
using android::hardware::defaultPassthroughServiceImplementation;
int main() {
return defaultPassthroughServiceImplementation<IConsumerIr>();
}
|