]> git.tdb.fi Git - libs/core.git/blobdiff - source/io/slice.h
Add decorations for things which are considered part of the API
[libs/core.git] / source / io / slice.h
index 2965f9899a8252c8415b5c776e31dee8b6c490fd..272fa2c8c1b8d6191a21d123971dc162229f136d 100644 (file)
@@ -1,6 +1,7 @@
 #ifndef MSP_IO_SLICE_H_
 #define MSP_IO_SLICE_H_
 
+#include <msp/core/mspcore_api.h>
 #include "seekable.h"
 
 namespace Msp {
@@ -16,7 +17,7 @@ its range.  If the offset of the underlying object is changed, the Slice will
 restore it before the next access.  This enables multiple Slices to be created
 on top of the same object.
 */
-class Slice: public Seekable, public sigc::trackable
+class MSPCORE_API Slice: public Seekable, public sigc::trackable
 {
 private:
        Seekable &below;