Convert to autotools build system for cleanness (part1).

This commit is contained in:
Thulinma 2012-05-08 19:19:42 +02:00
parent c123111e70
commit ad410a2e79
75 changed files with 63 additions and 3314 deletions

11
lib/base64.h Normal file
View file

@ -0,0 +1,11 @@
#include <string>
/// Holds base64 decoding and encoding functions.
class Base64{
private:
static const std::string chars;
static inline bool is_base64(unsigned char c);
public:
static std::string encode(std::string const input);
static std::string decode(std::string const& encoded_string);
};