aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/async/imap/MCIMAPMoveMessagesOperation.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/async/imap/MCIMAPMoveMessagesOperation.h')
-rw-r--r--src/async/imap/MCIMAPMoveMessagesOperation.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/async/imap/MCIMAPMoveMessagesOperation.h b/src/async/imap/MCIMAPMoveMessagesOperation.h
new file mode 100644
index 00000000..1c4342f5
--- /dev/null
+++ b/src/async/imap/MCIMAPMoveMessagesOperation.h
@@ -0,0 +1,46 @@
+//
+// IMAPMoveMessagesOperation.hpp
+// mailcore2
+//
+// Created by Nikolay Morev on 02/02/16.
+// Copyright © 2016 MailCore. All rights reserved.
+//
+
+#ifndef MAILCORE_MCIMAPMOVEMESSAGESOPERATION_H
+
+#define MAILCORE_MCIMAPMOVEMESSAGESOPERATION_H
+
+#include <MailCore/MCIMAPOperation.h>
+
+#ifdef __cplusplus
+
+namespace mailcore {
+
+ class MAILCORE_EXPORT IMAPMoveMessagesOperation : public IMAPOperation {
+ public:
+ IMAPMoveMessagesOperation();
+ virtual ~IMAPMoveMessagesOperation();
+
+ virtual void setDestFolder(String * destFolder);
+ virtual String * destFolder();
+
+ virtual void setUids(IndexSet * uids);
+ virtual IndexSet * uids();
+
+ // Result.
+ virtual HashMap * uidMapping();
+
+ public: // subclass behavior
+ virtual void main();
+
+ private:
+ IndexSet * mUids;
+ String * mDestFolder;
+ HashMap * mUidMapping;
+ };
+
+}
+
+#endif
+
+#endif