diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2018-07-02 01:06:39 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2018-07-02 03:08:59 +0200 |
commit | c2a2445897af17adb56a32dcf111312763a575d4 (patch) | |
tree | ad459cdd682aff3a011d11b6f2a3c518c60dec6a /aoe2hd/include/utils.h |
initial commit
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'aoe2hd/include/utils.h')
-rwxr-xr-x | aoe2hd/include/utils.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/aoe2hd/include/utils.h b/aoe2hd/include/utils.h new file mode 100755 index 0000000..1d71b90 --- /dev/null +++ b/aoe2hd/include/utils.h @@ -0,0 +1,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 |