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:
@ -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;
|
||||
|
Reference in New Issue
Block a user