This commit is contained in:
FluorescentCIAAfricanAmerican
2020-04-22 12:56:21 -04:00
commit 3bf9df6b27
15370 changed files with 5489726 additions and 0 deletions
+43
View File
@@ -0,0 +1,43 @@
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================
#ifndef DMEBASEIMPORTER_H
#define DMEBASEIMPORTER_H
#ifdef _WIN32
#pragma once
#endif
#include "datamodel/idatamodel.h"
class CDmeBaseImporter : public IDmLegacyUpdater
{
typedef IDmLegacyUpdater BaseClass;
public:
CDmeBaseImporter( char const *formatName, char const *nextFormatName );
virtual const char *GetName() const { return m_pFormatName; }
virtual bool IsLatestVersion() const;
virtual bool Update( CDmElement **ppRoot );
private:
virtual bool DoFixup( CDmElement *pRoot ) = 0;
protected:
char const *m_pFormatName;
char const *m_pNextSerializer;
};
class CSFMBaseImporter : public CDmeBaseImporter
{
typedef CDmeBaseImporter BaseClass;
public:
CSFMBaseImporter( char const *formatName, char const *nextFormatName );
};
#endif // DMEBASEIMPORTER_H