Remove obsolete function prototype.

This commit is contained in:
Learath Lea 2015-02-08 11:52:47 +02:00
parent 224e1f5a8a
commit 142c386cd6
2 changed files with 0 additions and 2 deletions

View file

@ -21,7 +21,6 @@ public:
~CFetcher();
virtual void QueueAdd(CFetchTask *pTask, const char *pUrl, const char *pDest, int StorageType = 2, void *pUser = 0, COMPFUNC pfnCompCb = 0, PROGFUNC pfnProgCb = 0);
virtual long HTTPResponse(const char *pUrl);
static void FetcherThread(void *pUser);
bool FetchFile(CFetchTask *pTask);
static void WriteToFile(char *pData, size_t size, size_t nmemb, void *pFile);

View file

@ -53,7 +53,6 @@ class IFetcher : public IInterface
public:
virtual bool Init() = 0;
virtual void QueueAdd(CFetchTask *pTask,const char *pUrl, const char *pDest, int StorageType = 2, void *pUser = 0, COMPFUNC pfnCompCb = 0, PROGFUNC pfnProgCb = 0) = 0;
virtual long HTTPResponse(const char *pUrl) = 0;
};
#endif