mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-13 00:08:26 -05:00
Calculate size and alignment in post processor
This commit is contained in:
@ -0,0 +1,15 @@
|
||||
#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;
|
||||
};
|
Reference in New Issue
Block a user