aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/async/smtp/MCSMTPCheckAccountOperation.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/async/smtp/MCSMTPCheckAccountOperation.h')
-rw-r--r--src/async/smtp/MCSMTPCheckAccountOperation.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/async/smtp/MCSMTPCheckAccountOperation.h b/src/async/smtp/MCSMTPCheckAccountOperation.h
new file mode 100644
index 00000000..67a97bb8
--- /dev/null
+++ b/src/async/smtp/MCSMTPCheckAccountOperation.h
@@ -0,0 +1,33 @@
+//
+// MCSMTPCheckAccountOperation.h
+// mailcore2
+//
+// Created by DINH Viêt Hoà on 1/12/13.
+// Copyright (c) 2013 MailCore. All rights reserved.
+//
+
+#ifndef __mailcore2__MCSMTPCheckAccountOperation__
+#define __mailcore2__MCSMTPCheckAccountOperation__
+
+#include <mailcore/MCSMTPOperation.h>
+#include <mailcore/MCAbstract.h>
+
+namespace mailcore {
+
+ class SMTPCheckAccountOperation : public SMTPOperation {
+ private:
+ Address * mFrom;
+
+ public:
+ SMTPCheckAccountOperation();
+ virtual ~SMTPCheckAccountOperation();
+
+ virtual void setFrom(Address * from);
+ virtual Address * from();
+
+ virtual void main();
+ };
+
+}
+
+#endif /* defined(__mailcore2__MCSMTPCheckAccountOperation__) */