diff options
author | Vincent Richard <[email protected]> | 2008-10-12 13:59:09 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2008-10-12 13:59:09 +0000 |
commit | 13f69779c298173bd21b83dd6cc538814f2b9155 (patch) | |
tree | 72c95e72fca7d0c916eea4faf39e7e636bfce8b6 /src/encoding.cpp | |
parent | Fixed compilation warnings. (diff) | |
download | vmime-13f69779c298173bd21b83dd6cc538814f2b9155.tar.gz vmime-13f69779c298173bd21b83dd6cc538814f2b9155.zip |
New namespace for encoders.
Diffstat (limited to 'src/encoding.cpp')
-rw-r--r-- | src/encoding.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/encoding.cpp b/src/encoding.cpp index 202dfe90..a45573de 100644 --- a/src/encoding.cpp +++ b/src/encoding.cpp @@ -22,9 +22,10 @@ // #include "vmime/encoding.hpp" -#include "vmime/encoderFactory.hpp" #include "vmime/contentHandler.hpp" +#include "vmime/utility/encoder/encoderFactory.hpp" + #include <algorithm> @@ -77,9 +78,9 @@ void encoding::generate(utility::outputStream& os, const string::size_type /* ma } -ref <encoder> encoding::getEncoder() const +ref <utility::encoder::encoder> encoding::getEncoder() const { - return (encoderFactory::getInstance()->create(generate())); + return (utility::encoder::encoderFactory::getInstance()->create(generate())); } |