34 lines
433 B
C++
34 lines
433 B
C++
#include "StdAfx.h"
|
|
#include ".\patchinfoparser.h"
|
|
|
|
PatchInfoParser::PatchInfoParser(void)
|
|
{
|
|
}
|
|
|
|
PatchInfoParser::~PatchInfoParser(void)
|
|
{
|
|
}
|
|
|
|
|
|
BOOL PatchInfoParser::Load()
|
|
{
|
|
return TRUE;
|
|
}
|
|
|
|
BOOL PatchInfoParser::Save()
|
|
{
|
|
return TRUE;
|
|
}
|
|
|
|
PatchInfo* PatchInfoParser::FindData( DWORD dwKey )
|
|
{
|
|
PATCHINFO_ITER iter;
|
|
iter = m_mapPatchInfo.find( dwKey );
|
|
if( iter != m_mapPatchInfo.end() )
|
|
return (*iter).second;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|