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

网格计算

开发平台:

Visual C++

  1. // WorkFrame.h : header file
  2. #ifndef _WORKFRAME_H
  3. #define _WORKFRAME_H
  4. #include "WorkspaceView.h"
  5. #include "FileTransFrame.h"
  6. #include "XTSplitterWnd.h"
  7. class CWorkFrame : public CFrameWnd
  8. {
  9. DECLARE_DYNCREATE(CWorkFrame)
  10. protected:
  11. CWorkFrame();           // protected constructor used by dynamic creation
  12. // Attributes
  13. public:
  14. CWorkspaceView *m_pwndWorkspaceView; //workspace view.
  15. CFileTransFrame *m_pwndFileTransView; //file trans view.
  16. // Operations
  17. public:
  18. // Overrides
  19. // ClassWizard generated virtual function overrides
  20. //{{AFX_VIRTUAL(CWorkFrame)
  21. protected:
  22. virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  23. //}}AFX_VIRTUAL
  24. // Implementation
  25. protected:
  26. virtual ~CWorkFrame();
  27. // Generated message map functions
  28. //{{AFX_MSG(CWorkFrame)
  29. // NOTE - the ClassWizard will add and remove member functions here.
  30. //}}AFX_MSG
  31. DECLARE_MESSAGE_MAP()
  32. protected:
  33. CXTSplitterWnd m_wndLRSplit; //Left-Right splitter window.
  34. };
  35. #endif //_WORKFRAME_H