version 0.0.1
[fms.git] / include / hex.h
1 #ifndef _hex_funcs_\r
2 #define _hex_funcs_\r
3 \r
4 #include <string>\r
5 #include <vector>\r
6 \r
7 namespace Hex\r
8 {\r
9         \r
10 const bool Encode(const std::vector<unsigned char> &data, std::string &encoded);\r
11 const bool Decode(const std::string &encoded, std::vector<unsigned char> &data);\r
12                 \r
13 };\r
14 \r
15 #endif _hex_funcs_\r