brmdoor_libnfc/brmdoor_nfc.h
2014-07-19 01:08:30 +02:00

15 lines
138 B
C++

#pragma once
#include <string>
class NFCDevice
{
public:
NFCDevice();
~NFCDevice() {}
std::string scanUID();
};