mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-10 14:58:10 -05:00
16 lines
492 B
C++
16 lines
492 B
C++
#pragma once
|
|
#include "Persistence/IDataRepository.h"
|
|
|
|
class IPostProcessor
|
|
{
|
|
public:
|
|
IPostProcessor() = default;
|
|
virtual ~IPostProcessor() = default;
|
|
IPostProcessor(const IPostProcessor& other) = default;
|
|
IPostProcessor(IPostProcessor&& other) noexcept = default;
|
|
IPostProcessor& operator=(const IPostProcessor& other) = default;
|
|
IPostProcessor& operator=(IPostProcessor&& other) noexcept = default;
|
|
|
|
virtual bool PostProcess(IDataRepository* repository) = 0;
|
|
};
|