Move to new Build System

This commit is contained in:
2020-05-01 10:21:46 +02:00
parent 4ee3f56bd7
commit 1a464d85cf
51 changed files with 1088 additions and 1101 deletions
+16
View File
@@ -0,0 +1,16 @@
#ifndef UTIL_BASE64_H
#define UTIL_BASE64_H
#include <string>
namespace Util {
namespace Base64 {
std::string Encode(unsigned char const* , unsigned int len);
std::string Decode(std::string const& s);
} // namespace Base64
} // namespace Util
#endif // UTIL_BASE64_H