Home | History | Annotate | Download | only in default
      1 #define LOG_TAG "android.hardware.nfc (at) 1.0-service"
      2 
      3 #include <android/hardware/nfc/1.0/INfc.h>
      4 
      5 #include <hidl/LegacySupport.h>
      6 
      7 // Generated HIDL files
      8 using android::hardware::nfc::V1_0::INfc;
      9 using android::hardware::defaultPassthroughServiceImplementation;
     10 
     11 int main() {
     12     return defaultPassthroughServiceImplementation<INfc>();
     13 }
     14