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
24
25#ifndef QB_IO_TRANSPORT_FILE_H
26#define QB_IO_TRANSPORT_FILE_H
27#include "../stream.h"
28#include "../system/file.h"
29
30namespace qb::io::transport {
31
42class file : public stream<io::sys::file> {
43public:
51 [[nodiscard]] int
53 return 0;
54 }
55};
56
57} // namespace qb::io::transport
58
59#endif // QB_IO_TRANSPORT_FILE_H
Combined input/output stream template class.
Definition stream.h:303
File transport providing stream-based access to local files.
Definition file.h:42
int write()
Write data to the file.
Definition file.h:52
Core stream abstraction classes for the QB IO library.