diff options
author | Vincent Richard <[email protected]> | 2013-09-04 18:05:33 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2013-09-04 18:05:33 +0000 |
commit | 2b3424d5944126e6d1cddb32934e2293b4bcbe19 (patch) | |
tree | 4ab6f7a1cedb12da17cb109c83df3971404e414e | |
parent | Added support for standard 64-bit integer type. (diff) | |
download | vmime-2b3424d5944126e6d1cddb32934e2293b4bcbe19.tar.gz vmime-2b3424d5944126e6d1cddb32934e2293b4bcbe19.zip |
Added missing exports.
-rw-r--r-- | vmime/base.hpp | 2 | ||||
-rw-r--r-- | vmime/net/message.hpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/vmime/base.hpp b/vmime/base.hpp index 6b7588fd..2437514b 100644 --- a/vmime/base.hpp +++ b/vmime/base.hpp @@ -257,7 +257,7 @@ namespace vmime /** Inherit from this class to indicate the subclass is not copyable, * ie. you want to prohibit copy construction and copy assignment. */ - class noncopyable + class VMIME_EXPORT noncopyable { protected: diff --git a/vmime/net/message.hpp b/vmime/net/message.hpp index de5e884a..6bf4b492 100644 --- a/vmime/net/message.hpp +++ b/vmime/net/message.hpp @@ -177,7 +177,7 @@ public: /** The type for an unique message identifier. */ - class uid + class VMIME_EXPORT uid { public: |