blob: 5062aa72e4104578f9e91cb3e6c76777a47c9a07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#include "cru/common/io/Stream.hpp"
namespace cru::io {
void Stream::Rewind() { Seek(0); }
Index Stream::GetSize() {
Index current_position = Tell();
Seek(0, SeekOrigin::End);
Index size = Tell();
Seek(current_position);
return size;
}
Index Stream::Read(std::byte* buffer, Index size) {
return Read(buffer, 0, size);
}
Index Stream::Write(const std::byte* buffer, Index size) {
return Write(buffer, 0, size);
}
Index Stream::Write(const char* buffer, Index offset, Index size) {
return Write(reinterpret_cast<const std::byte*>(buffer), offset, size);
}
Index Stream::Write(const char* buffer, Index size) {
return Write(reinterpret_cast<const std::byte*>(buffer), size);
}
void Stream::Flush() {}
void Stream::Close() {}
} // namespace cru::io
|