]> git.tdb.fi Git - libs/core.git/blobdiff - source/io/seekable.h
Add move semantics to Variant
[libs/core.git] / source / io / seekable.h
index 68454d038bc31ff50118044292906af36dba6895..e549d24c5dd7b8a0527b4cb9fc4e039ce887ad91 100644 (file)
@@ -3,6 +3,7 @@
 
 #include <cstdint>
 #include <stdexcept>
+#include <msp/core/mspcore_api.h>
 #include "base.h"
 
 namespace Msp {
@@ -20,15 +21,15 @@ enum SeekType
 };
 
 
-class bad_seek: public std::runtime_error
+class MSPCORE_API bad_seek: public std::runtime_error
 {
 public:
        bad_seek(SeekOffset, SeekType);
-       virtual ~bad_seek() throw() = default;
+       ~bad_seek() throw() override = default;
 };
 
 
-class Seekable: public Base
+class MSPCORE_API Seekable: public Base
 {
 protected:
        Seekable() = default;