diff options
Diffstat (limited to 'src/vmime/net/pop3/POP3Utils.hpp')
-rw-r--r-- | src/vmime/net/pop3/POP3Utils.hpp | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/src/vmime/net/pop3/POP3Utils.hpp b/src/vmime/net/pop3/POP3Utils.hpp index c7d15b07..09d15d5b 100644 --- a/src/vmime/net/pop3/POP3Utils.hpp +++ b/src/vmime/net/pop3/POP3Utils.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 @@ -46,8 +46,8 @@ namespace pop3 { class POP3Response; -class VMIME_EXPORT POP3Utils -{ +class VMIME_EXPORT POP3Utils { + public: /** Parse a response of type ([integer] [string] \n)*. @@ -63,8 +63,10 @@ public: * @param result points to an associative array which maps a message * number to its corresponding data (either UID or size) */ - static void parseMultiListOrUidlResponse - (shared_ptr <POP3Response> response, std::map <size_t, string>& result); + static void parseMultiListOrUidlResponse( + const shared_ptr <POP3Response>& response, + std::map <size_t, string>& result + ); /** Returns a list of message numbers given a message set. * @@ -72,7 +74,10 @@ public: * @param msgCount number of messages in folder * @return list of message numbers */ - static const std::vector <size_t> messageSetToNumberList(const messageSet& msgs, const size_t msgCount); + static const std::vector <size_t> messageSetToNumberList( + const messageSet& msgs, + const size_t msgCount + ); }; |