SRVRVW.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // srvrvw.h : interface of the CServerView class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. class CServerView : public CEditView
  13. {
  14. protected: // create from serialization only
  15. CServerView();
  16. DECLARE_DYNCREATE(CServerView)
  17. // Attributes
  18. public:
  19. CServerDoc* GetDocument();
  20. // Operations
  21. public:
  22. void Message(LPCTSTR lpszMessage);
  23. // Overrides
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(CServerView)
  26. public:
  27. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  28. protected:
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. public:
  32. virtual ~CServerView();
  33. #ifdef _DEBUG
  34. virtual void AssertValid() const;
  35. virtual void Dump(CDumpContext& dc) const;
  36. #endif
  37. protected:
  38. // Generated message map functions
  39. protected:
  40. //{{AFX_MSG(CServerView)
  41. // NOTE - the ClassWizard will add and remove member functions here.
  42. //    DO NOT EDIT what you see in these blocks of generated code !
  43. //}}AFX_MSG
  44. DECLARE_MESSAGE_MAP()
  45. };
  46. #ifndef _DEBUG  // debug version in srvrvw.cpp
  47. inline CServerDoc* CServerView::GetDocument()
  48.    { return (CServerDoc*)m_pDocument; }
  49. #endif
  50. /////////////////////////////////////////////////////////////////////////////