diff options
author | Vincent Richard <[email protected]> | 2005-04-03 08:00:52 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2005-04-03 08:00:52 +0000 |
commit | 0bba2794fc73785a07ca7990c615a77f8a3065eb (patch) | |
tree | afa695e782412aa2449a0ffec9d300541d76865f /src/messaging/POP3Store.cpp | |
parent | Added constant for 'text/directory' MIME type. (diff) | |
download | vmime-0bba2794fc73785a07ca7990c615a77f8a3065eb.tar.gz vmime-0bba2794fc73785a07ca7990c615a77f8a3065eb.zip |
Moved IMAP, POP3, maildir and SMTP files to separate namespaces.
Diffstat (limited to '')
-rw-r--r-- | src/messaging/pop3/POP3Store.cpp (renamed from src/messaging/POP3Store.cpp) | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/messaging/POP3Store.cpp b/src/messaging/pop3/POP3Store.cpp index 3129f14a..d6ece2a0 100644 --- a/src/messaging/POP3Store.cpp +++ b/src/messaging/pop3/POP3Store.cpp @@ -17,8 +17,8 @@ // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // -#include "vmime/messaging/POP3Store.hpp" -#include "vmime/messaging/POP3Folder.hpp" +#include "vmime/messaging/pop3/POP3Store.hpp" +#include "vmime/messaging/pop3/POP3Folder.hpp" #include "vmime/exception.hpp" #include "vmime/platformDependant.hpp" @@ -30,6 +30,7 @@ namespace vmime { namespace messaging { +namespace pop3 { POP3Store::POP3Store(session* sess, authenticator* auth) @@ -624,5 +625,6 @@ const std::vector <string> POP3Store::_infos::getAvailableProperties() const } +} // pop3 } // messaging } // vmime |