]> git.tdb.fi Git - libs/core.git/blobdiff - source/io/seekable.h
Add decorations for things which are considered part of the API
[libs/core.git] / source / io / seekable.h
index 84a556163e764e40ed837703434a01dfd60fe9a9..e549d24c5dd7b8a0527b4cb9fc4e039ce887ad91 100644 (file)
@@ -3,6 +3,7 @@
 
 #include <cstdint>
 #include <stdexcept>
+#include <msp/core/mspcore_api.h>
 #include "base.h"
 
 namespace Msp {
@@ -20,7 +21,7 @@ enum SeekType
 };
 
 
-class bad_seek: public std::runtime_error
+class MSPCORE_API bad_seek: public std::runtime_error
 {
 public:
        bad_seek(SeekOffset, SeekType);
@@ -28,7 +29,7 @@ public:
 };
 
 
-class Seekable: public Base
+class MSPCORE_API Seekable: public Base
 {
 protected:
        Seekable() = default;