aboutsummaryrefslogtreecommitdiffstats
path: root/src/messaging/IMAPFolder.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/messaging/IMAPFolder.hpp')
-rw-r--r--src/messaging/IMAPFolder.hpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/messaging/IMAPFolder.hpp b/src/messaging/IMAPFolder.hpp
index bbedb030..fae0a302 100644
--- a/src/messaging/IMAPFolder.hpp
+++ b/src/messaging/IMAPFolder.hpp
@@ -42,7 +42,7 @@ class IMAPConnection;
class IMAPFolder : public folder
{
-protected:
+private:
friend class IMAPStore;
friend class IMAPMessage;
@@ -55,14 +55,14 @@ protected:
public:
- const int mode() const;
+ const int getMode() const;
- const int type();
+ const int getType();
- const int flags();
+ const int getFlags();
- const folder::path::component name() const;
- const folder::path fullPath() const;
+ const folder::path::component getName() const;
+ const folder::path getFullPath() const;
void open(const int mode, bool failIfModeIsNotAvailable = false);
void close(const bool expunge);
@@ -102,8 +102,8 @@ public:
folder* getParent();
- const class store& store() const;
- class store& store();
+ const store* getStore() const;
+ store* getStore();
void fetchMessages(std::vector <message*>& msg, const int options, progressionListener* progress = NULL);