13e1d94cfe781505b6709538665cb66cc1e10ed07Sandeep Patil/*
23e1d94cfe781505b6709538665cb66cc1e10ed07Sandeep Patil * Copyright 2016 The Android Open Source Project
33e1d94cfe781505b6709538665cb66cc1e10ed07Sandeep Patil *
43e1d94cfe781505b6709538665cb66cc1e10ed07Sandeep Patil * Licensed under the Apache License, Version 2.0 (the "License");
53e1d94cfe781505b6709538665cb66cc1e10ed07Sandeep Patil * you may not use this file except in compliance with the License.
63e1d94cfe781505b6709538665cb66cc1e10ed07Sandeep Patil * You may obtain a copy of the License at
73e1d94cfe781505b6709538665cb66cc1e10ed07Sandeep Patil *
83e1d94cfe781505b6709538665cb66cc1e10ed07Sandeep Patil *      http://www.apache.org/licenses/LICENSE-2.0
93e1d94cfe781505b6709538665cb66cc1e10ed07Sandeep Patil *
103e1d94cfe781505b6709538665cb66cc1e10ed07Sandeep Patil * Unless required by applicable law or agreed to in writing, software
113e1d94cfe781505b6709538665cb66cc1e10ed07Sandeep Patil * distributed under the License is distributed on an "AS IS" BASIS,
123e1d94cfe781505b6709538665cb66cc1e10ed07Sandeep Patil * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
133e1d94cfe781505b6709538665cb66cc1e10ed07Sandeep Patil * See the License for the specific language governing permissions and
143e1d94cfe781505b6709538665cb66cc1e10ed07Sandeep Patil * limitations under the License.
153e1d94cfe781505b6709538665cb66cc1e10ed07Sandeep Patil */
163e1d94cfe781505b6709538665cb66cc1e10ed07Sandeep Patil
173e1d94cfe781505b6709538665cb66cc1e10ed07Sandeep Patil#define LOG_TAG "android.hardware.health@1.0-service"
183e1d94cfe781505b6709538665cb66cc1e10ed07Sandeep Patil
193e1d94cfe781505b6709538665cb66cc1e10ed07Sandeep Patil#include <android/hardware/health/1.0/IHealth.h>
203e1d94cfe781505b6709538665cb66cc1e10ed07Sandeep Patil#include <hidl/LegacySupport.h>
213e1d94cfe781505b6709538665cb66cc1e10ed07Sandeep Patil
223e1d94cfe781505b6709538665cb66cc1e10ed07Sandeep Patilusing android::hardware::health::V1_0::IHealth;
233e1d94cfe781505b6709538665cb66cc1e10ed07Sandeep Patilusing android::hardware::defaultPassthroughServiceImplementation;
243e1d94cfe781505b6709538665cb66cc1e10ed07Sandeep Patil
253e1d94cfe781505b6709538665cb66cc1e10ed07Sandeep Patilint main() {
26974d7d0a0273e14c285f9747effa17fbacaec364Chris Phoenix    return defaultPassthroughServiceImplementation<IHealth>();
273e1d94cfe781505b6709538665cb66cc1e10ed07Sandeep Patil}
28