]> git.tdb.fi Git - libs/core.git/blob - source/io/windows/poll_platform.h
Add some missing includes
[libs/core.git] / source / io / windows / poll_platform.h
1 #ifndef MSP_IO_POLL_PLATFORM_H_
2 #define MSP_IO_POLL_PLATFORM_H_
3
4 #include <windows.h>
5 #include <vector>
6 #include "poll.h"
7
8 namespace Msp {
9 namespace IO {
10
11 struct Poller::Private
12 {
13         std::vector<HANDLE> handles;
14 };
15
16 } // namespace IO
17 } // namespace Msp
18
19 #endif