mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-21 00:25:44 +00:00
14 lines
327 B
C++
14 lines
327 B
C++
#pragma once
|
|
|
|
#include "IPostProcessor.h"
|
|
|
|
#include <unordered_set>
|
|
|
|
class MarkingRequiredPostProcessor final : public IPostProcessor
|
|
{
|
|
static bool RequiresMarking(std::unordered_set<const void*>& visitedStructures, const StructureInformation* info);
|
|
|
|
public:
|
|
bool PostProcess(IDataRepository* repository) override;
|
|
};
|