diff options
Diffstat (limited to 'src/vmime/net/pop3/POP3Store.hpp')
-rw-r--r-- | src/vmime/net/pop3/POP3Store.hpp | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/vmime/net/pop3/POP3Store.hpp b/src/vmime/net/pop3/POP3Store.hpp index 4737715a..140a1ab9 100644 --- a/src/vmime/net/pop3/POP3Store.hpp +++ b/src/vmime/net/pop3/POP3Store.hpp @@ -1,6 +1,6 @@ // // VMime library (http://www.vmime.org) -// Copyright (C) 2002-2013 Vincent Richard <[email protected]> +// Copyright (C) 2002 Vincent Richard <[email protected]> // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License as @@ -51,15 +51,19 @@ class POP3Response; /** POP3 store service. */ +class VMIME_EXPORT POP3Store : public store { -class VMIME_EXPORT POP3Store : public store -{ friend class POP3Folder; friend class POP3Message; public: - POP3Store(const shared_ptr <session>& sess, const shared_ptr <security::authenticator>& auth, const bool secured = false); + POP3Store( + const shared_ptr <session>& sess, + const shared_ptr <security::authenticator>& auth, + const bool secured = false + ); + ~POP3Store(); const string getProtocolName() const; |