home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 May
/
Pcwk0597.iso
/
delphi
/
prctvb25.lzh
/
VC.ZIP
/
VCDOC.H
< prev
next >
Wrap
C/C++ Source or Header
|
1996-01-15
|
912b
|
38 lines
// vcdoc.h : interface of the CVcDoc class
//
/////////////////////////////////////////////////////////////////////////////
class CVcDoc : public CDocument
{
protected: // create from serialization only
CVcDoc();
DECLARE_DYNCREATE(CVcDoc)
// Attributes
public:
// Operations
public:
// Implementation
public:
virtual ~CVcDoc();
virtual void Serialize(CArchive& ar); // overridden for document i/o
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
virtual BOOL OnNewDocument();
// Generated message map functions
protected:
//{{AFX_MSG(CVcDoc)
// 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()
};
/////////////////////////////////////////////////////////////////////////////