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