mirror of
https://github.com/brmlab/brmdoor_libnfc.git
synced 2025-06-08 00:24:00 +02:00
15 lines
138 B
C++
15 lines
138 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
class NFCDevice
|
|
{
|
|
|
|
public:
|
|
|
|
NFCDevice();
|
|
|
|
~NFCDevice() {}
|
|
|
|
std::string scanUID();
|
|
};
|