Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.4 KiB

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