1 /*
2  * This file is part of the Code::Blocks IDE and licensed under the GNU Lesser General Public License, version 3
3  * http://www.gnu.org/licenses/lgpl-3.0.html
4  */
5 
6 #ifndef CB_BASE64_H
7 #define CB_BASE64_H
8 
9 #include <wx/defs.h>
10 #include <wx/string.h>
11 #include "settings.h"
12 
13 namespace wxBase64
14 {
15     DLLIMPORT wxString Encode(const wxUint8* pData, size_t len);
16     DLLIMPORT wxString Encode(const wxString& data);
17     DLLIMPORT wxString Decode(const wxString& data);
18 }
19 
20 #endif // CB_BASE64_H
21