mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-21 20:27:52 -05:00
20 lines
528 B
C++
20 lines
528 B
C++
#pragma once
|
|
|
|
#include "IWritingStream.h"
|
|
#include "Writing/ZoneWriter.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;
|
|
};
|