home *** CD-ROM | disk | FTP | other *** search
- // DoServerView.h : interface of the CDoServerView class
- //
- /////////////////////////////////////////////////////////////////////////////
-
- class CDoServerView : public CView
- {
- protected: // create from serialization only
- CDoServerView();
- DECLARE_DYNCREATE(CDoServerView)
-
- // Attributes
- public:
- CDoServerDoc* GetDocument();
-
- // Operations
- public:
-
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CDoServerView)
- public:
- virtual void OnDraw(CDC* pDC); // overridden to draw this view
- virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
- protected:
- virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
- virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
- virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
- //}}AFX_VIRTUAL
-
- // Implementation
- public:
- virtual ~CDoServerView();
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
-
- protected:
-
- // Generated message map functions
- protected:
- //{{AFX_MSG(CDoServerView)
- // NOTE - the ClassWizard will add and remove member functions here.
- // DO NOT EDIT what you see in these blocks of generated code !
- afx_msg void OnCancelEditSrvr();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- #ifndef _DEBUG // debug version in DoServerView.cpp
- inline CDoServerDoc* CDoServerView::GetDocument()
- { return (CDoServerDoc*)m_pDocument; }
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
-