/** @file * @brief Util namespace header. * * * * @copyright Intra2net AG * @license GPLv2 */ #ifndef UTIL_H #define UTIL_H #include #include #include namespace Util { std::string compute_md5_digest(std::string data); std::string parse_status_code(std::string data, std::string delimiter=" "); } #endif