input/file: convert to class
This commit is contained in:
parent
89f9561d10
commit
37501d9bc7
@ -33,9 +33,10 @@
|
|||||||
|
|
||||||
static constexpr Domain file_domain("file");
|
static constexpr Domain file_domain("file");
|
||||||
|
|
||||||
struct FileInputStream final : public InputStream {
|
class FileInputStream final : public InputStream {
|
||||||
int fd;
|
int fd;
|
||||||
|
|
||||||
|
public:
|
||||||
FileInputStream(const char *path, int _fd, off_t _size,
|
FileInputStream(const char *path, int _fd, off_t _size,
|
||||||
Mutex &_mutex, Cond &_cond)
|
Mutex &_mutex, Cond &_cond)
|
||||||
:InputStream(path, _mutex, _cond),
|
:InputStream(path, _mutex, _cond),
|
||||||
|
Loading…
Reference in New Issue
Block a user