// // Created by robin on 6/19/16. // #ifndef MIFARE_TOOLS_FREEFAREDEVICE_H #define MIFARE_TOOLS_FREEFAREDEVICE_H #include #include "NfcDevice.h" #include "FreeFareTag.h" class FreeFareDevice { public: FreeFareDevice(std::shared_ptr device); Result>> getTags(); private: std::shared_ptr _device; }; #endif //MIFARE_TOOLS_FREEFAREDEVICE_H