blob: 731acd5aa282cf6783d3d9771fca70195d3d9f6e [file] [log] [blame]
Iliyan Malchev3db0f602016-09-26 09:57:20 -07001#define LOG_TAG "android.hardware.nfc@1.0-service"
Iliyan Malchev3db0f602016-09-26 09:57:20 -07002
3#include <android/hardware/nfc/1.0/INfc.h>
4
Steven Morelandcc7d42b2016-10-19 12:45:53 -07005#include <hidl/LegacySupport.h>
Iliyan Malchev3db0f602016-09-26 09:57:20 -07006
7// Generated HIDL files
8using android::hardware::nfc::V1_0::INfc;
Steven Morelandcc7d42b2016-10-19 12:45:53 -07009using android::hardware::defaultPassthroughServiceImplementation;
Iliyan Malchev3db0f602016-09-26 09:57:20 -070010
11int main() {
Chris Phoenix3b06b222017-01-18 15:51:05 -080012 return defaultPassthroughServiceImplementation<INfc>();
Iliyan Malchev3db0f602016-09-26 09:57:20 -070013}