diff options
| author | Vincent Richard <[email protected]> | 2004-10-21 15:05:47 +0000 |
|---|---|---|
| committer | Vincent Richard <[email protected]> | 2004-10-21 15:05:47 +0000 |
| commit | 2949fb51f13e1236d5c161f02e1c2c8541100e9f (patch) | |
| tree | 991edcf50483116ce83977a4d9e652de8c5328dc /src/messaging/IMAPConnection.hpp | |
| parent | header class unit tests added (diff) | |
| download | vmime-2949fb51f13e1236d5c161f02e1c2c8541100e9f.tar.gz vmime-2949fb51f13e1236d5c161f02e1c2c8541100e9f.zip | |
Refactoring (see ChangeLog).
Diffstat (limited to 'src/messaging/IMAPConnection.hpp')
| -rw-r--r-- | src/messaging/IMAPConnection.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/messaging/IMAPConnection.hpp b/src/messaging/IMAPConnection.hpp index ae92f1e3..0cd9b144 100644 --- a/src/messaging/IMAPConnection.hpp +++ b/src/messaging/IMAPConnection.hpp @@ -72,11 +72,11 @@ public: IMAPParser::response* readResponse(IMAPParser::literalHandler* lh = NULL); - const IMAPTag* tag() const { return (m_tag); } - const IMAPParser* parser() const { return (m_parser); } + const IMAPTag* getTag() const { return (m_tag); } + const IMAPParser* getParser() const { return (m_parser); } - const IMAPStore* store() const { return (m_store); } - IMAPStore* store() { return (m_store); } + const IMAPStore* getStore() const { return (m_store); } + IMAPStore* getStore() { return (m_store); } private: |
