12cc348372783391b11e9b676a3109e315fca8038Connor O'Brien/*
22cc348372783391b11e9b676a3109e315fca8038Connor O'Brien * Copyright 2016 The Android Open Source Project
32cc348372783391b11e9b676a3109e315fca8038Connor O'Brien *
42cc348372783391b11e9b676a3109e315fca8038Connor O'Brien * Licensed under the Apache License, Version 2.0 (the "License");
52cc348372783391b11e9b676a3109e315fca8038Connor O'Brien * you may not use this file except in compliance with the License.
62cc348372783391b11e9b676a3109e315fca8038Connor O'Brien * You may obtain a copy of the License at
72cc348372783391b11e9b676a3109e315fca8038Connor O'Brien *
82cc348372783391b11e9b676a3109e315fca8038Connor O'Brien *      http://www.apache.org/licenses/LICENSE-2.0
92cc348372783391b11e9b676a3109e315fca8038Connor O'Brien *
102cc348372783391b11e9b676a3109e315fca8038Connor O'Brien * Unless required by applicable law or agreed to in writing, software
112cc348372783391b11e9b676a3109e315fca8038Connor O'Brien * distributed under the License is distributed on an "AS IS" BASIS,
122cc348372783391b11e9b676a3109e315fca8038Connor O'Brien * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
132cc348372783391b11e9b676a3109e315fca8038Connor O'Brien * See the License for the specific language governing permissions and
142cc348372783391b11e9b676a3109e315fca8038Connor O'Brien * limitations under the License.
152cc348372783391b11e9b676a3109e315fca8038Connor O'Brien */
162cc348372783391b11e9b676a3109e315fca8038Connor O'Brien
172cc348372783391b11e9b676a3109e315fca8038Connor O'Brien#define LOG_TAG "android.hardware.ir@1.0-service"
182cc348372783391b11e9b676a3109e315fca8038Connor O'Brien
192cc348372783391b11e9b676a3109e315fca8038Connor O'Brien#include <android/hardware/ir/1.0/IConsumerIr.h>
202cc348372783391b11e9b676a3109e315fca8038Connor O'Brien#include <hidl/LegacySupport.h>
212cc348372783391b11e9b676a3109e315fca8038Connor O'Brien
222cc348372783391b11e9b676a3109e315fca8038Connor O'Brienusing android::hardware::ir::V1_0::IConsumerIr;
232cc348372783391b11e9b676a3109e315fca8038Connor O'Brienusing android::hardware::defaultPassthroughServiceImplementation;
242cc348372783391b11e9b676a3109e315fca8038Connor O'Brien
252cc348372783391b11e9b676a3109e315fca8038Connor O'Brienint main() {
2600854a3c239a368f2099cabcb393e903a9486277Chris Phoenix    return defaultPassthroughServiceImplementation<IConsumerIr>();
272cc348372783391b11e9b676a3109e315fca8038Connor O'Brien}
28