aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/nntp/MCNNTPProgressCallback.h
diff options
context:
space:
mode:
authorGravatar CodaFi <devteam.codafi@gmail.com>2014-08-13 14:53:51 -0600
committerGravatar CodaFi <devteam.codafi@gmail.com>2014-08-13 14:53:51 -0600
commit38d848cb9c8d64e910804b7b6d559a9a31d2ad99 (patch)
treed249b20e796b5927842b2712086ab9c3bc438a47 /src/core/nntp/MCNNTPProgressCallback.h
parent988fe081b340e5c1040a6d78db793107972c7bfb (diff)
NNTP support
Diffstat (limited to 'src/core/nntp/MCNNTPProgressCallback.h')
-rw-r--r--src/core/nntp/MCNNTPProgressCallback.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/core/nntp/MCNNTPProgressCallback.h b/src/core/nntp/MCNNTPProgressCallback.h
new file mode 100644
index 00000000..f863cc0c
--- /dev/null
+++ b/src/core/nntp/MCNNTPProgressCallback.h
@@ -0,0 +1,20 @@
+#ifndef MAILCORE_MCNNTPPROGRESSCALLBACK_H
+
+#define MAILCORE_MCNNTPPROGRESSCALLBACK_H
+
+#ifdef __cplusplus
+
+namespace mailcore {
+
+ class NNTPSession;
+
+ class NNTPProgressCallback {
+ public:
+ virtual void bodyProgress(NNTPSession * session, unsigned int current, unsigned int maximum) {};
+ };
+
+}
+
+#endif
+
+#endif