FileTransView.h
上传用户:maryhy001
上传日期:2007-05-02
资源大小:2317k
文件大小:1k
源码类别:

网格计算

开发平台:

Visual C++

  1. // FileTransView.h : header file
  2. #ifndef _FILETRANS_VIEW_H
  3. #define _FILETRANS_VIEW_H
  4. // CFileTransView view
  5. #include "FilelistSend.h"
  6. #include "FileListRecv.h"
  7. class CFileTransView : public CView
  8. {
  9. public:
  10. CFileTransView();
  11. DECLARE_DYNCREATE(CFileTransView)
  12. // Attributes
  13. public:
  14. CFileListSend *m_pwndFileSendList; //send list window.
  15. CFileListRecv *m_pwndFileRecvList; //recv list window.
  16. // Overrides
  17. // ClassWizard generated virtual function overrides
  18. //{{AFX_VIRTUAL(CFileTransView)
  19. protected:
  20. virtual void OnDraw(CDC* pDC);      // overridden to draw this view
  21. //}}AFX_VIRTUAL
  22. // Implementation
  23. protected:
  24. virtual ~CFileTransView();
  25. #ifdef _DEBUG
  26. virtual void AssertValid() const;
  27. virtual void Dump(CDumpContext& dc) const;
  28. #endif
  29. protected:
  30. CSplitterWnd m_wndFleListSpliter;
  31. // Generated message map functions
  32. protected:
  33. //{{AFX_MSG(CFileTransView)
  34. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  35. afx_msg void OnSize(UINT nType, int cx, int cy);
  36. //}}AFX_MSG
  37. DECLARE_MESSAGE_MAP()
  38. };
  39. #endif //_FILETRANS_VIEW_H