blob: 32f9c286bba574ae36274aaeb0ccf91a139c8d72 [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() {
Steven Morelandcc7d42b2016-10-19 12:45:53 -070012 return defaultPassthroughServiceImplementation<INfc>("nfc_nci");
Iliyan Malchev3db0f602016-09-26 09:57:20 -070013}