#pragma once
|
#include "stdafx.h"
|
#include "MBTransMgr.h"
|
#include "MBDownloadMgr.h"
|
/************************************************************************/
|
/* ÏÂÔØÈÎÎñ¶ÓÁÐ */
|
/************************************************************************/
|
class AFX_EXT_CLASS CMBDownloadAsyncTask
|
{
|
public:
|
CMBDownloadAsyncTask(void);
|
~CMBDownloadAsyncTask(void);
|
private:
|
CString m_strServerIP; // ·þÎñµØÖ·
|
int m_nPort; // ¶Ë¿Ú
|
CString m_strUserLogin; // 怬id
|
CString m_strUserName; // Óû§Ãû
|
CString m_strUserSession; // Óû§session
|
|
CMBTransMgr *m_pTransMgr; // ´«Êä¹ÜÀíÆ÷
|
public:
|
void GetDocInfo(CMBDownFileInfo *pDownFileInfo);
|
void GetDocList( CMBDownDirInfo *pDownDirInfo );
|
public:
|
void SetServerInfo( CString strServerIP,int nPort,CString strUserLogin,CString strUserName,CString strUserSession );
|
void SetTransMgr( CMBTransMgr *pTransMgr );
|
};
|