diff options
Diffstat (limited to '')
-rw-r--r-- | vmime/utility/encoder/b64Encoder.hpp (renamed from vmime/encoderB64.hpp) | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/vmime/encoderB64.hpp b/vmime/utility/encoder/b64Encoder.hpp index 46444a53..831e9f6f 100644 --- a/vmime/encoderB64.hpp +++ b/vmime/utility/encoder/b64Encoder.hpp @@ -21,25 +21,26 @@ // the GNU General Public License cover the whole combination. // -#ifndef VMIME_ENCODERB64_HPP_INCLUDED -#define VMIME_ENCODERB64_HPP_INCLUDED +#ifndef VMIME_UTILITY_ENCODER_B64ENCODER_HPP_INCLUDED +#define VMIME_UTILITY_ENCODER_B64ENCODER_HPP_INCLUDED -#include "vmime/encoder.hpp" +#include "vmime/utility/encoder/encoder.hpp" -namespace vmime -{ +namespace vmime { +namespace utility { +namespace encoder { /** Base64 encoder. */ -class encoderB64 : public encoder +class b64Encoder : public encoder { public: - encoderB64(); + b64Encoder(); utility::stream::size_type encode(utility::inputStream& in, utility::outputStream& out, utility::progressListener* progress = NULL); utility::stream::size_type decode(utility::inputStream& in, utility::outputStream& out, utility::progressListener* progress = NULL); @@ -53,7 +54,9 @@ protected: }; +} // encoder +} // utility } // vmime -#endif // VMIME_ENCODERB64_HPP_INCLUDED +#endif // VMIME_UTILITY_ENCODER_B64ENCODER_HPP_INCLUDED |