]> git.tdb.fi Git - libs/core.git/blob - source/core/process_private.h
Add move semantics to Variant
[libs/core.git] / source / core / process_private.h
1 #ifndef MSP_CORE_PROCESS_PRIVATE_H_
2 #define MSP_CORE_PROCESS_PRIVATE_H_
3
4 #include "process.h"
5 #include "process_platform.h"
6
7 namespace Msp {
8
9 struct Process::Private
10 {
11         PlatformProcessInformation info;
12
13         Private();
14 };
15
16 } // namespace Msp
17
18 #endif