Files
Sun1602/Tools/SunUpdateManager/SunUpdateServer/PatchInfoParser.cpp
T
2022-10-26 12:25:11 +08:00

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;
}