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.

FreeFareDeviceInternal.h 602B

1234567891011121314151617181920212223242526272829303132
  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 "NfcDeviceInternal.h"
  8. #include "FreeFareTagInternal.h"
  9. namespace LibNfc
  10. {
  11. namespace FreeFare
  12. {
  13. class FreeFareDeviceInternal
  14. {
  15. public:
  16. FreeFareDeviceInternal(std::shared_ptr<LibNfc::Core::NfcDeviceInternal> device);
  17. LibNfc::Utils::Result<std::vector<std::shared_ptr<FreeFareTagInternal>>> getTags();
  18. private:
  19. std::shared_ptr<LibNfc::Core::NfcDeviceInternal> _device;
  20. };
  21. }; // FreeFare
  22. }; // LibNfc
  23. #endif //MIFARE_TOOLS_FREEFAREDEVICE_H