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.

FreeFareTag.h 482B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // Created by robin on 6/19/16.
  3. //
  4. #ifndef MIFARE_TOOLS_FREEFARETAG_H
  5. #define MIFARE_TOOLS_FREEFARETAG_H
  6. #include <freefare.h>
  7. #include <string>
  8. class FreeFareTag
  9. {
  10. public:
  11. FreeFareTag(FreefareTag tag);
  12. ~FreeFareTag();
  13. const freefare_tag * getTag() const;
  14. freefare_tag_type getType() const;
  15. const std::string & getUid() const;
  16. private:
  17. FreefareTag _tag;
  18. freefare_tag_type _type;
  19. std::string _uid;
  20. };
  21. #endif //MIFARE_TOOLS_FREEFARETAG_H