]> git.tdb.fi Git - libs/core.git/blobdiff - source/core/process_private.h
Add a Process class for running and interfacing with other programs
[libs/core.git] / source / core / process_private.h
diff --git a/source/core/process_private.h b/source/core/process_private.h
new file mode 100644 (file)
index 0000000..f6f4f2e
--- /dev/null
@@ -0,0 +1,17 @@
+#ifndef MSP_CORE_PROCESS_PRIVATE_H_
+#define MSP_CORE_PROCESS_PRIVATE_H_
+
+#include "process_platform.h"
+
+namespace Msp {
+
+struct Process::Private
+{
+       PlatformProcessInformation info;
+
+       Private();
+};
+
+} // namespace Msp
+
+#endif