]> git.tdb.fi Git - libs/core.git/blob - source/io/handle_private.h
Use vectors for storage in Poller
[libs/core.git] / source / io / handle_private.h
1 #ifndef MSP_IO_HANDLE_PRIVATE_H_
2 #define MSP_IO_HANDLE_PRIVATE_H_
3
4 #include "handle.h"
5 #include "handle_platform.h"
6
7 namespace Msp {
8 namespace IO {
9
10 struct Handle::Private
11 {
12         PlatformHandle handle;
13
14         Private();
15
16         Private &operator=(PlatformHandle);
17         operator PlatformHandle() const { return handle; }
18 };
19
20 } // namespace IO
21 } // namespace Msp
22
23 #endif