You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

FreeFareDevice.h 434B

12345678910111213141516171819202122232425
  1. //
  2. // Created by robin on 6/19/16.
  3. //
  4. #ifndef MIFARE_TOOLS_FREEFAREDEVICE_H
  5. #define MIFARE_TOOLS_FREEFAREDEVICE_H
  6. #include <freefare.h>
  7. #include "NfcDevice.h"
  8. #include "FreeFareTag.h"
  9. class FreeFareDevice
  10. {
  11. public:
  12. FreeFareDevice(std::shared_ptr<NfcDevice> device);
  13. Result<std::vector<std::shared_ptr<FreeFareTag>>> getTags();
  14. private:
  15. std::shared_ptr<NfcDevice> _device;
  16. };
  17. #endif //MIFARE_TOOLS_FREEFAREDEVICE_H