]> granicus.if.org Git - icinga2/blob - lib/base/base64.hpp
Merge pull request #7185 from Icinga/bugfix/gelfwriter-wrong-log-facility
[icinga2] / lib / base / base64.hpp
1 /* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2
3 #ifndef BASE64_H
4 #define BASE64_H
5
6 #include "remote/i2-remote.hpp"
7 #include "base/string.hpp"
8
9 namespace icinga
10 {
11
12 /**
13  * Base64
14  *
15  * @ingroup remote
16  */
17 struct Base64
18 {
19         static String Decode(const String& data);
20         static String Encode(const String& data);
21 };
22
23 }
24
25 #endif /* BASE64_H */