home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Computer Buyer 1996 March
/
buyer-0396.iso
/
abc.z
/
OLE_VVW.H
< prev
next >
Wrap
C/C++ Source or Header
|
1995-09-15
|
1KB
|
44 lines
// ole_vvw.h : interface of the COle_vbxView class
//
/////////////////////////////////////////////////////////////////////////////
class COle_vbxView : public CView
{
protected: // create from serialization only
COle_vbxView();
DECLARE_DYNCREATE(COle_vbxView)
// Attributes
public:
COle_vbxDoc* GetDocument();
// Operations
public:
// Implementation
public:
virtual ~COle_vbxView();
virtual void OnDraw(CDC* pDC); // overridden to draw this view
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// Generated message map functions
protected:
//{{AFX_MSG(COle_vbxView)
// 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 ole_vvw.cpp
inline COle_vbxDoc* COle_vbxView::GetDocument()
{ return (COle_vbxDoc*)m_pDocument; }
#endif
/////////////////////////////////////////////////////////////////////////////