2021-10-02 05:18:02 -04:00
|
|
|
/*
|
|
|
|
* Copyright 2016 The Android Open Source Project
|
|
|
|
*
|
2021-09-12 19:11:43 -04:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2021-10-02 05:18:02 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#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>();
|
|
|
|
}
|