home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Monster Media 1994 #1
/
monster.zip
/
monster
/
PROG_C
/
MSVCPUZL.ZIP
/
PUZZLDOC.H
< prev
next >
Wrap
C/C++ Source or Header
|
1993-11-04
|
937b
|
38 lines
// puzzldoc.h : interface of the CPuzzleDoc class
//
/////////////////////////////////////////////////////////////////////////////
class CPuzzleDoc : public CDocument
{
protected: // create from serialization only
CPuzzleDoc();
DECLARE_DYNCREATE(CPuzzleDoc)
// Attributes
public:
// Operations
public:
// Implementation
public:
virtual ~CPuzzleDoc();
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(CPuzzleDoc)
// 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()
};
/////////////////////////////////////////////////////////////////////////////