qb  2.0.0.0
C++17 Actor Framework
qb Issue Watch Star Fork Follow @isndev
Loading...
Searching...
No Matches
io.h
Go to the documentation of this file.
1
25
26#ifndef QB_IO_ASYNC_EVENT_IO_H
27#define QB_IO_ASYNC_EVENT_IO_H
28
29#include "base.h"
30
31namespace qb::io::async::event {
32
51struct io : base<ev::io> {
53
58 explicit io(ev::loop_ref loop)
59 : base_t(loop) {}
60};
61
62} // namespace qb::io::async::event
63
64#endif // QB_IO_ASYNC_EVENT_IO_H
Base class for asynchronous events in the QB IO library.
base(ev::loop_ref loop)
Definition base.h:83
io(ev::loop_ref loop)
Constructor.
Definition io.h:58
base< ev::io > base_t
Base type alias for base<ev::io>.
Definition io.h:52