31 lines
574 B
C++
31 lines
574 B
C++
/*
|
|
2009-07-24, 문상현
|
|
샵리스트 관리를 위해 사용되는 객체
|
|
*/
|
|
|
|
#pragma once
|
|
#include <SLM/CommonSLM.h>
|
|
#include <SLM/ListManager.h>
|
|
|
|
|
|
class CShopList;
|
|
|
|
class CShopListManager : public CListManager
|
|
{
|
|
public:
|
|
CShopListManager();
|
|
virtual ~CShopListManager();
|
|
|
|
CShopList* GetListPtr() {return m_ShopList.get();};
|
|
|
|
private:
|
|
std::auto_ptr<CShopList> m_ShopList;
|
|
|
|
void RegistScriptFiles();
|
|
void RegistScriptFilesT();
|
|
void RegistScriptFilesW();
|
|
|
|
WZResult LoadScript(bool bDownLoad);
|
|
WZResult LoadScriptT(bool bDownLoad);
|
|
WZResult LoadScriptW(bool bDownLoad);
|
|
}; |