Don't use hardcoded strings in the configuration message box. Use string resources...
[reactos.git] / irc / ArchBlackmann / base64.h
1 // base64.h
2
3 #ifndef BASE64_H
4 #define BASE64_H
5
6 #include <string>
7
8 std::string base64_encode ( const std::string& s );
9
10 std::string base64_decode ( const std::string& s );
11
12 #endif//BASE64_H