diff options
Diffstat (limited to 'src/messaging/IMAPMessage.hpp')
-rw-r--r-- | src/messaging/IMAPMessage.hpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/messaging/IMAPMessage.hpp b/src/messaging/IMAPMessage.hpp index 74c7a36f..0bf874b9 100644 --- a/src/messaging/IMAPMessage.hpp +++ b/src/messaging/IMAPMessage.hpp @@ -39,7 +39,7 @@ class IMAPstructure; class IMAPMessage : public message { -protected: +private: friend class IMAPFolder; @@ -50,20 +50,20 @@ protected: public: - const int number() const; + const int getNumber() const; - const uid uniqueId() const; + const uid getUniqueId() const; - const int size() const; + const int getSize() const; const bool isExpunged() const; - const class structure& structure() const; - class structure& structure(); + const structure& getStructure() const; + structure& getStructure(); - const class header& header() const; + const header& getHeader() const; - const int flags() const; + const int getFlags() const; void setFlags(const int flags, const int mode = FLAG_MODE_SET); void extract(utility::outputStream& os, progressionListener* progress = NULL, const int start = 0, const int length = -1) const; |