summaryrefslogtreecommitdiff
path: root/src/base64.hh
blob: 1790a7a370753ce6549e82947321a86e132ab31a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef BASE64_HH
#define BASE64_HH

#include <string>

namespace stuff {

class Base64 {
public:
    static bool decode(const std::string& input, std::string* output);

private:
    Base64() = delete;
    ~Base64() = delete;
    Base64(Base64&) = delete;
    Base64& operator=(Base64&) = delete;
};

}  // namespace stuff

#endif /* BASE64_HH */