123
This commit is contained in:
27
CrySystem/DownloadManager.h
Normal file
27
CrySystem/DownloadManager.h
Normal file
@@ -0,0 +1,27 @@
|
||||
#pragma once
|
||||
|
||||
//#ifndef LINUX
|
||||
|
||||
class CHTTPDownloader;
|
||||
|
||||
|
||||
class CDownloadManager
|
||||
{
|
||||
public:
|
||||
CDownloadManager();
|
||||
virtual ~CDownloadManager();
|
||||
|
||||
void Create(ISystem *pSystem);
|
||||
CHTTPDownloader *CreateDownload();
|
||||
void RemoveDownload(CHTTPDownloader *pDownload);
|
||||
void Update();
|
||||
void Release();
|
||||
|
||||
private:
|
||||
|
||||
ISystem *m_pSystem;
|
||||
std::list<CHTTPDownloader *> m_lDownloadList;
|
||||
};
|
||||
|
||||
|
||||
//#endif //LINUX
|
||||
Reference in New Issue
Block a user