mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-22 04:37:51 -05:00
Add ZoneWriting basis
This commit is contained in:
19
src/ZoneWriting/Writing/IWritingStep.h
Normal file
19
src/ZoneWriting/Writing/IWritingStep.h
Normal file
@ -0,0 +1,19 @@
|
||||
#pragma once
|
||||
|
||||
#include "Writing/ZoneWriter.h"
|
||||
#include "IWritingStream.h"
|
||||
|
||||
class ZoneWriter;
|
||||
|
||||
class IWritingStep
|
||||
{
|
||||
public:
|
||||
IWritingStep() = default;
|
||||
virtual ~IWritingStep() = default;
|
||||
IWritingStep(const IWritingStep& other) = default;
|
||||
IWritingStep(IWritingStep&& other) noexcept = default;
|
||||
IWritingStep& operator=(const IWritingStep& other) = default;
|
||||
IWritingStep& operator=(IWritingStep&& other) noexcept = default;
|
||||
|
||||
virtual void PerformStep(ZoneWriter* zoneWriter, IWritingStream* stream) = 0;
|
||||
};
|
Reference in New Issue
Block a user