xref: /aosp_15_r20/hardware/interfaces/nfc/1.0/default/service.cpp (revision 4d7e907c777eeecc4c5bd7cf640a754fac206ff7)
1 #define LOG_TAG "[email protected]"
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 
main()11 int main() {
12     return defaultPassthroughServiceImplementation<INfc>();
13 }
14