]> git.tdb.fi Git - libs/core.git/blobdiff - source/io/handle.h
Add move semantics to Variant
[libs/core.git] / source / io / handle.h
index 561d710e457e77c73e7766f23d5bfd77f9b82310..06c2034c5271995995fd2929027cc1951fcf9d7d 100644 (file)
@@ -2,17 +2,18 @@
 #define MSP_IO_HANDLE_H_
 
 #include <cstddef>
+#include <msp/core/mspcore_api.h>
 
 namespace Msp {
 namespace IO {
 
-class Handle
+class MSPCORE_API Handle
 {
 public:
        struct Private;
 
 private:
-       Private *priv = 0;
+       Private *priv = nullptr;
 
 public:
        Handle();