Calculate size and alignment in post processor

This commit is contained in:
Jan
2021-02-19 16:23:16 +01:00
parent 1264be4274
commit 7c51c26255
48 changed files with 966 additions and 246 deletions

View File

@ -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;
};