diff options
| author | crupest <crupest@outlook.com> | 2023-10-05 22:02:25 +0800 |
|---|---|---|
| committer | crupest <crupest@outlook.com> | 2023-10-05 22:02:25 +0800 |
| commit | 1550828518ff4719db88f35e088207816866a073 (patch) | |
| tree | 217e35f48f6c08152bc607d804ad78c0a292e3cd /include/cru/common/io/CFileStream.h | |
| parent | 90feae14e708fbb0b313503a6e76cfbd77f94ce1 (diff) | |
| download | cru-1550828518ff4719db88f35e088207816866a073.tar.gz cru-1550828518ff4719db88f35e088207816866a073.tar.bz2 cru-1550828518ff4719db88f35e088207816866a073.zip | |
...
Diffstat (limited to 'include/cru/common/io/CFileStream.h')
| -rw-r--r-- | include/cru/common/io/CFileStream.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/cru/common/io/CFileStream.h b/include/cru/common/io/CFileStream.h index 65de2ac7..be23ac4a 100644 --- a/include/cru/common/io/CFileStream.h +++ b/include/cru/common/io/CFileStream.h @@ -24,9 +24,11 @@ class CRU_BASE_API CFileStream : public Stream { bool CanRead() override; Index Read(std::byte* buffer, Index offset, Index size) override; + using Stream::Read; bool CanWrite() override; Index Write(const std::byte* buffer, Index offset, Index size) override; + using Stream::Write; void Flush() override; |
