// // Created by robin on 7/22/16. // #ifndef MIFARE_TOOLS_LIBNFCBUSINESS_H #define MIFARE_TOOLS_LIBNFCBUSINESS_H #include #include #include "NfcDeviceBusiness.h" class LibNfcBusiness { public: LibNfcBusiness(); virtual ~LibNfcBusiness(); ResultBool init(); void clean(); bool isInitialized() const; Result>> getDevices() const; std::shared_ptr getLibNfc() const; static std::string getVersion(); protected: std::shared_ptr _libNfc; }; #endif //MIFARE_TOOLS_LIBNFCBUSINESS_H