mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 16:15:43 +00:00
13 lines
292 B
C++
13 lines
292 B
C++
#pragma once
|
|
|
|
#include "IPostProcessor.h"
|
|
|
|
class MemberLeafsPostProcessor final : public IPostProcessor
|
|
{
|
|
static bool MemberIsLeaf(MemberInformation* member);
|
|
static void ProcessInfo(StructureInformation* info);
|
|
|
|
public:
|
|
bool PostProcess(IDataRepository* repository) override;
|
|
};
|