2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-06-27 23:01:55 +00:00

Add ZoneWriting basis

This commit is contained in:
Jan
2021-03-15 22:36:07 +01:00
parent 301f6e3e7a
commit 9d26c9c927
66 changed files with 1344 additions and 111 deletions

View File

@ -4,7 +4,12 @@
class IZoneStream
{
public:
IZoneStream() = default;
virtual ~IZoneStream() = default;
IZoneStream(const IZoneStream& other) = default;
IZoneStream(IZoneStream&& other) noexcept = default;
IZoneStream& operator=(const IZoneStream& other) = default;
IZoneStream& operator=(IZoneStream&& other) noexcept = default;
virtual void PushBlock(block_t block) = 0;
virtual block_t PopBlock() = 0;