Expose seek and tell functions on coral::file_writer

This commit is contained in:
kayomn 2023-02-26 00:32:57 +00:00
parent 3f84b0ce0b
commit a2c033107c

View File

@ -111,7 +111,9 @@ export namespace coral {
}; };
struct file_writer : public writer { struct file_writer : public writer {
virtual expected<u64, io_error> seek(u64 offset) = 0;
virtual expected<u64, io_error> tell() = 0;
}; };
/** /**