aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/nntp
diff options
context:
space:
mode:
authorGravatar Hoa V. DINH <dinh.viet.hoa@gmail.com>2014-11-22 20:50:44 -0800
committerGravatar Hoa V. DINH <dinh.viet.hoa@gmail.com>2014-11-22 20:50:44 -0800
commitc2c915e567f8fc256cfcf72eacd1cb7d3491cfc2 (patch)
treeaf3b040a3ea7a0d82001c1a1ebc76fe5ee51262e /src/core/nntp
parentb6c488d68dc17cddbf5806bd645e167488d50366 (diff)
Fixed win32 exports
Diffstat (limited to 'src/core/nntp')
-rw-r--r--src/core/nntp/MCNNTPGroupInfo.h3
-rw-r--r--src/core/nntp/MCNNTPProgressCallback.h5
-rw-r--r--src/core/nntp/MCNNTPSession.h3
3 files changed, 5 insertions, 6 deletions
diff --git a/src/core/nntp/MCNNTPGroupInfo.h b/src/core/nntp/MCNNTPGroupInfo.h
index 7aab5e17..75a6675c 100644
--- a/src/core/nntp/MCNNTPGroupInfo.h
+++ b/src/core/nntp/MCNNTPGroupInfo.h
@@ -8,8 +8,7 @@
namespace mailcore {
- MAILCORE_EXPORT
- class NNTPGroupInfo : public Object {
+ class MAILCORE_EXPORT NNTPGroupInfo : public Object {
public:
NNTPGroupInfo();
virtual ~NNTPGroupInfo();
diff --git a/src/core/nntp/MCNNTPProgressCallback.h b/src/core/nntp/MCNNTPProgressCallback.h
index 46cfbe72..dd615d04 100644
--- a/src/core/nntp/MCNNTPProgressCallback.h
+++ b/src/core/nntp/MCNNTPProgressCallback.h
@@ -4,12 +4,13 @@
#ifdef __cplusplus
+#include <MailCore/MCUtils.h>
+
namespace mailcore {
class NNTPSession;
- MAILCORE_EXPORT
- class NNTPProgressCallback {
+ class MAILCORE_EXPORT NNTPProgressCallback {
public:
virtual void bodyProgress(NNTPSession * session, unsigned int current, unsigned int maximum) {};
};
diff --git a/src/core/nntp/MCNNTPSession.h b/src/core/nntp/MCNNTPSession.h
index 1d896192..dc2316ff 100644
--- a/src/core/nntp/MCNNTPSession.h
+++ b/src/core/nntp/MCNNTPSession.h
@@ -11,8 +11,7 @@ namespace mailcore {
class NNTPProgressCallback;
class MessageHeader;
- MAILCORE_EXPORT
- class NNTPSession : public Object {
+ class MAILCORE_EXPORT NNTPSession : public Object {
public:
NNTPSession();
virtual ~NNTPSession();