// // Created by robin on 6/29/15. // #ifndef PCSC_CPPTOOLS_SCHEX_H # define PCSC_CPPTOOLS_SCHEX_H # include class ScHex { public: static const char hexCharToInt(const char& c); static const std::string intToHexChar(const char& c); static const std::string byteArrayToString(const std::string& bytes, const std::string& separator = " "); static const std::string stringToByteArray(const std::string& str); }; #endif //PCSC_CPPTOOLS_SCHEX_H