2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-07-04 10:11:53 +00:00

Rename new StructuredDataDefDumper

This commit is contained in:
Jan
2022-03-20 19:35:52 +01:00
parent 9f0852485d
commit 833b158a64
3 changed files with 11 additions and 11 deletions

View File

@ -6,7 +6,7 @@
#include "Dumping/AbstractTextDumper.h"
#include "StructuredDataDef/CommonStructuredDataDef.h"
class StructuredDataDefDumperNew : AbstractTextDumper
class StructuredDataDefDumper : AbstractTextDumper
{
struct
{
@ -21,7 +21,7 @@ class StructuredDataDefDumperNew : AbstractTextDumper
void DumpStruct(const CommonStructuredDataDef& def, const CommonStructuredDataStruct& _struct, size_t structIndex);
public:
explicit StructuredDataDefDumperNew(std::ostream& stream);
explicit StructuredDataDefDumper(std::ostream& stream);
void DumpDef(const CommonStructuredDataDef& def);
};