aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/async/nntp/MCNNTPCheckAccountOperation.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/async/nntp/MCNNTPCheckAccountOperation.h')
-rw-r--r--src/async/nntp/MCNNTPCheckAccountOperation.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/async/nntp/MCNNTPCheckAccountOperation.h b/src/async/nntp/MCNNTPCheckAccountOperation.h
new file mode 100644
index 00000000..28db9c58
--- /dev/null
+++ b/src/async/nntp/MCNNTPCheckAccountOperation.h
@@ -0,0 +1,32 @@
+//
+// MCNNTPCheckAccountOperation.h
+// mailcore2
+//
+// Created by Robert Widmann on 8/13/14.
+// Copyright (c) 2014 MailCore. All rights reserved.
+//
+
+#ifndef MAILCORE_MCNNTPCHECKACCOUNTOPERATION_H
+
+#define MAILCORE_MCNNTPCHECKACCOUNTOPERATION_H
+
+#include <MailCore/MCNNTPOperation.h>
+
+#ifdef __cplusplus
+
+namespace mailcore {
+
+ class NNTPCheckAccountOperation : public NNTPOperation {
+ public:
+ NNTPCheckAccountOperation();
+ virtual ~NNTPCheckAccountOperation();
+
+ public: // subclass behavior
+ virtual void main();
+ };
+
+}
+
+#endif
+
+#endif