home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Troubleshooting Netware Systems
/
CSTRIAL0196.BIN
/
attach
/
msj
/
v10n04
/
multilin.exe
/
GLOBAVW.H
< prev
next >
Wrap
C/C++ Source or Header
|
1995-04-01
|
1KB
|
51 lines
// globavw.h : interface of the CGlobalView class
//
/////////////////////////////////////////////////////////////////////////////
class CGlobalView : public CView
{
protected: // create from serialization only
CGlobalView();
DECLARE_DYNCREATE(CGlobalView)
// Attributes
public:
CGlobalDoc* GetDocument();
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CGlobalView)
public:
virtual void OnDraw(CDC* pDC); // overridden to draw this view
protected:
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CGlobalView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// Generated message map functions
protected:
//{{AFX_MSG(CGlobalView)
// NOTE - the ClassWizard will add and remove member functions here.
// DO NOT EDIT what you see in these blocks of generated code !
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
#ifndef _DEBUG // debug version in globavw.cpp
inline CGlobalDoc* CGlobalView::GetDocument()
{ return (CGlobalDoc*)m_pDocument; }
#endif
/////////////////////////////////////////////////////////////////////////////