mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-22 00:55:45 +00:00
18 lines
368 B
C++
18 lines
368 B
C++
#pragma once
|
|
|
|
#include "Writing/IZoneWriterFactory.h"
|
|
|
|
#include <memory>
|
|
|
|
namespace T5
|
|
{
|
|
class ZoneWriterFactory final : public IZoneWriterFactory
|
|
{
|
|
class Impl;
|
|
|
|
public:
|
|
_NODISCARD bool SupportsZone(Zone* zone) const override;
|
|
_NODISCARD std::unique_ptr<ZoneWriter> CreateWriter(Zone* zone) const override;
|
|
};
|
|
} // namespace T5
|