您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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