diff options
author | crupest <crupest@outlook.com> | 2022-02-03 14:55:17 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-02-03 14:55:17 +0800 |
commit | d15172cfe1ac8558567c1b1c10c2e671b0d1f033 (patch) | |
tree | 44eb3f6c760bc4a30786c4716a3c70d2b4b4c28e /include/cru/common/io/Stream.hpp | |
parent | 2cf2f297c00ad262ddcbe56d38fdd45dffb7e342 (diff) | |
download | cru-d15172cfe1ac8558567c1b1c10c2e671b0d1f033.tar.gz cru-d15172cfe1ac8558567c1b1c10c2e671b0d1f033.tar.bz2 cru-d15172cfe1ac8558567c1b1c10c2e671b0d1f033.zip |
...
Diffstat (limited to 'include/cru/common/io/Stream.hpp')
-rw-r--r-- | include/cru/common/io/Stream.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/cru/common/io/Stream.hpp b/include/cru/common/io/Stream.hpp index 78beba21..131e82e9 100644 --- a/include/cru/common/io/Stream.hpp +++ b/include/cru/common/io/Stream.hpp @@ -21,8 +21,8 @@ class CRU_BASE_API Stream : public Object { public: virtual bool CanSeek() = 0; - virtual Index Tell() = 0; - virtual void Seek(Index offset, SeekOrigin origin = SeekOrigin::Current) = 0; + virtual Index Seek(Index offset, SeekOrigin origin = SeekOrigin::Current) = 0; + virtual Index Tell(); virtual void Rewind(); virtual Index GetSize(); |