Maze Builder Docs 6.0.1
Loading...
Searching...
No Matches
base64_helper.h
Go to the documentation of this file.
1#ifndef BASE64_HELPER_H
2#define BASE64_HELPER_H
3
4#include <memory>
5#include <string>
6
7namespace mazes {
8
14public:
15 // Default constructor
16 explicit base_64_helper();
17 // Destructor
19
20 // Copy constructor
21 base_64_helper(const base_64_helper& other);
22
23 // Copy assignment operator
24 base_64_helper& operator=(const base_64_helper& other);
25
26 // Move constructor
27 base_64_helper(base_64_helper&& other) noexcept = default;
28
29 // Move assignment operator
30 base_64_helper& operator=(base_64_helper&& other) noexcept = default;
31
35 std::string encode(const std::string& s) const noexcept;
36
38 std::string decode(const std::string& s) const noexcept;
39
40private:
42 class base_64_helper_impl;
43 std::unique_ptr<base_64_helper_impl> impl;
44}; // class
45
46} // namespace
47
48#endif // BASE64_HELPER_H
Base64 encoding and decoding helper class.
Definition base64_helper.h:13
std::string encode(const std::string &s) const noexcept
Transform an input string into base64 characters.
std::string decode(const std::string &s) const noexcept
Transform an input string from from base64 characters.
Namespace for the maze builder.
Definition algo_interface.h:9