]> git.tdb.fi Git - libs/core.git/blobdiff - source/core/process.h
Add move semantics to Variant
[libs/core.git] / source / core / process.h
index f21ecb337d76d5c8718b056478597968f04c0f9a..ed997f853e143a52bbfd386cda1e32115c937255 100644 (file)
@@ -5,6 +5,7 @@
 #include <vector>
 #include <msp/fs/path.h>
 #include <msp/io/base.h>
+#include "mspcore_api.h"
 #include "noncopyable.h"
 
 namespace Msp {
@@ -22,7 +23,7 @@ the process or capture its output, use an IO::Pipe.  Redirections performed on
 the self object take effect immediately.  It is recommended to perform such
 redirections directly on the Console objects.
 */
-class Process: private NonCopyable
+class MSPCORE_API Process: private NonCopyable
 {
 public:
        typedef std::vector<std::string> Arguments;
@@ -30,12 +31,12 @@ public:
 private:
        struct Private;
 
-       Private *priv = 0;
+       Private *priv = nullptr;
        FS::Path work_dir;
        bool redirect = false;
-       IO::Base *cin = 0;
-       IO::Base *cout = 0;
-       IO::Base *cerr = 0;
+       IO::Base *cin = nullptr;
+       IO::Base *cout = nullptr;
+       IO::Base *cerr = nullptr;
        bool running = false;
        bool finished = false;
        unsigned exit_code = 0;