aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2013-11-13 22:53:44 +0000
committerVincent Richard <[email protected]>2013-11-13 22:53:44 +0000
commit4dbd346021768ed82a25d714d544515502e90c14 (patch)
tree7c729bcdac2ee16c5bda03fd385596433cf03ff4
parentAdded missing include for 'typeid'. (diff)
downloadvmime-4dbd346021768ed82a25d714d544515502e90c14.tar.gz
vmime-4dbd346021768ed82a25d714d544515502e90c14.zip
Added missing export specifiers.
-rw-r--r--vmime/propertySet.hpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/vmime/propertySet.hpp b/vmime/propertySet.hpp
index 1fe39aed..eefdbcc3 100644
--- a/vmime/propertySet.hpp
+++ b/vmime/propertySet.hpp
@@ -439,17 +439,17 @@ public:
#ifndef VMIME_INLINE_TEMPLATE_SPECIALIZATION
-template <> void propertySet::property::setValue <string>(const string& value);
-template <> void propertySet::property::setValue(const bool& value);
+template <> VMIME_EXPORT void propertySet::property::setValue <string>(const string& value);
+template <> VMIME_EXPORT void propertySet::property::setValue(const bool& value);
-template <> string propertySet::property::getValue() const;
-template <> bool propertySet::property::getValue() const;
+template <> VMIME_EXPORT string propertySet::property::getValue() const;
+template <> VMIME_EXPORT bool propertySet::property::getValue() const;
-template <> string propertySet::valueFromString(const string& value);
-template <> string propertySet::valueToString(const string& value);
+template <> VMIME_EXPORT string propertySet::valueFromString(const string& value);
+template <> VMIME_EXPORT string propertySet::valueToString(const string& value);
-template <> bool propertySet::valueFromString(const string& value);
-template <> string propertySet::valueToString(const bool& value);
+template <> VMIME_EXPORT bool propertySet::valueFromString(const string& value);
+template <> VMIME_EXPORT string propertySet::valueToString(const bool& value);
#endif // VMIME_INLINE_TEMPLATE_SPECIALIZATION