qb  2.0.0.0
C++17 Actor Framework
qb Issue Watch Star Fork Follow @isndev
Loading...
Searching...
No Matches
file.h
Go to the documentation of this file.
1
25
26#ifndef QB_IO_ASYNC_EVENT_FILE_H
27#define QB_IO_ASYNC_EVENT_FILE_H
28
29#include "base.h"
30
31namespace qb::io::async::event {
32
70struct file : base<ev::stat> {
72
77 explicit file(ev::loop_ref loop)
78 : base_t(loop) {}
79};
80
81} // namespace qb::io::async::event
82
83#endif // QB_IO_ASYNC_EVENT_FILE_H
Base class for asynchronous events in the QB IO library.
base(ev::loop_ref loop)
Definition base.h:83
base< ev::stat > base_t
Base type alias for base<ev::stat>.
Definition file.h:71
file(ev::loop_ref loop)
Constructor.
Definition file.h:77