]> git.tdb.fi Git - libs/core.git/blobdiff - source/core/thread.h
Add decorations for things which are considered part of the API
[libs/core.git] / source / core / thread.h
index ef071cd43ffb070f8c2ea2646a514ac2f514f9a6..71acb22079f749520e86b8939965483218fdb773 100644 (file)
@@ -2,6 +2,7 @@
 #define MSP_CORE_THREAD_H_
 
 #include <string>
+#include "mspcore_api.h"
 #include "noncopyable.h"
 
 namespace Msp {
@@ -13,7 +14,7 @@ automatically started upon creation - you must manually call launch() instead.
 This is to allow initializing variables of the derived class before the thread
 is started.
 */
-class Thread: private NonCopyable
+class MSPCORE_API Thread: private NonCopyable
 {
 private:
        struct Private;