1 2 3 4 5 6 7 8 9 10 11 12 13
#ifndef UTILS_H #define UTILS_H #include <vector> #include <string> namespace utils { std::string convertBinToHexstr(const std::vector<unsigned char>& bin); }; #endif // UTILS_H