aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/async/nntp/MCNNTPListNewsgroupsOperation.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/async/nntp/MCNNTPListNewsgroupsOperation.h')
-rw-r--r--src/async/nntp/MCNNTPListNewsgroupsOperation.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/async/nntp/MCNNTPListNewsgroupsOperation.h b/src/async/nntp/MCNNTPListNewsgroupsOperation.h
new file mode 100644
index 00000000..54156012
--- /dev/null
+++ b/src/async/nntp/MCNNTPListNewsgroupsOperation.h
@@ -0,0 +1,41 @@
+//
+// MCNNTPListNewsgroupsMessagesOperation.h
+// mailcore2
+//
+// Created by Robert Widmann on 8/13/14.
+// Copyright (c) 2014 MailCore. All rights reserved.
+//
+
+#ifndef MAILCORE_MCNNTPLISTNEWSGROUPSOPERATION_H
+
+#define MAILCORE_MCNNTPLISTNEWSGROUPSOPERATION_H
+
+#include <MailCore/MCNNTPOperation.h>
+
+#ifdef __cplusplus
+
+namespace mailcore {
+
+ class NNTPListNewsgroupsOperation : public NNTPOperation {
+ public:
+ NNTPListNewsgroupsOperation();
+ virtual ~NNTPListNewsgroupsOperation();
+
+ virtual void setListsSubscribed(bool listsSubscribed);
+ virtual bool listsSubscribed();
+
+ virtual Array * groups();
+
+ public: // subclass behavior
+ virtual void main();
+
+ private:
+ bool mListsSuscribed;
+ Array * /* NNTPGroupInfo */ mGroups;
+ };
+
+}
+
+#endif
+
+#endif