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

网格计算

开发平台:

Visual C++

  1. // trfAgentView.h : interface of the CTrfAgentView class
  2. #ifndef _TRFAGENTVIEW_H
  3. #define _TRFAGENTVIEW_H
  4. class CTrfAgentView : public CView
  5. {
  6. protected: // create from serialization only
  7. CTrfAgentView();
  8. DECLARE_DYNCREATE(CTrfAgentView)
  9. // Attributes
  10. public:
  11. CTrfAgentDoc* GetDocument();
  12. // Operations
  13. public:
  14. // Overrides
  15. // ClassWizard generated virtual function overrides
  16. //{{AFX_VIRTUAL(CTrfAgentView)
  17. public:
  18. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  19. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  20. protected:
  21. //}}AFX_VIRTUAL
  22. // Implementation
  23. public:
  24. virtual ~CTrfAgentView();
  25. #ifdef _DEBUG
  26. virtual void AssertValid() const;
  27. virtual void Dump(CDumpContext& dc) const;
  28. #endif
  29. protected:
  30. // Generated message map functions
  31. protected:
  32. //{{AFX_MSG(CTrfAgentView)
  33. // NOTE - the ClassWizard will add and remove member functions here.
  34. //    DO NOT EDIT what you see in these blocks of generated code !
  35. //}}AFX_MSG
  36. DECLARE_MESSAGE_MAP()
  37. };
  38. #ifndef _DEBUG  // debug version in trfAgentView.cpp
  39. inline CTrfAgentDoc* CTrfAgentView::GetDocument()
  40.    { return (CTrfAgentDoc*)m_pDocument; }
  41. #endif
  42. #endif //_TRFAGENTVIEW_H