Loading...
Searching...
No Matches
base64_tool.h
1
2#ifndef NAF_TOOLS_BASE64TOOL
3#define NAF_TOOLS_BASE64TOOL
4
5#include <string>
6#include <sstream>
7
8#include "Poco/Base64Encoder.h"
9#include "Poco/Base64Decoder.h"
10#include "Poco/StreamCopier.h"
11
12
13namespace NAF
14{
15 namespace Tools
16 {
17 class Base64Tool;
18 }
19}
20
21using namespace NAF;
23{
24 public:
25 Base64Tool();
26
27 std::string Encode_(std::string text_to_encode);
28
29 std::string Decode_(std::string text_to_decode);
30};
31
32#endif //NAF_TOOLS_BASE64TOOL
Definition base64_tool.h:23