Initial commit.
This commit is contained in:
28
codemp/rmg/rm_instancefile.h
Normal file
28
codemp/rmg/rm_instancefile.h
Normal file
@@ -0,0 +1,28 @@
|
||||
#pragma once
|
||||
#if !defined(RM_INSTANCEFILE_H_INC)
|
||||
#define RM_INSTANCEFILE_H_INC
|
||||
|
||||
#ifdef DEBUG_LINKING
|
||||
#pragma message("...including RM_InstanceFile.h")
|
||||
#endif
|
||||
|
||||
class CRMInstance;
|
||||
|
||||
class CRMInstanceFile
|
||||
{
|
||||
public:
|
||||
|
||||
CRMInstanceFile ( );
|
||||
~CRMInstanceFile ( );
|
||||
|
||||
bool Open ( const char* instance );
|
||||
void Close ( void );
|
||||
CRMInstance* CreateInstance ( const char* name );
|
||||
|
||||
protected:
|
||||
|
||||
CGenericParser2 mParser;
|
||||
CGPGroup* mInstances;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user