home *** CD-ROM | disk | FTP | other *** search
/ Using VRML (Special Edition) / Special_Edition_Using_VRML_CDROM_Que_1996.iso / webpages / software / win95 / browsers / ambersw / tutorial / lesson1 / lessodoc.h < prev    next >
C/C++ Source or Header  |  1995-09-17  |  1KB  |  46 lines

  1. // lessodoc.h : interface of the CLesson1Doc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CLesson1Doc : public CDocument
  6. {
  7. protected: // create from serialization only
  8.     CLesson1Doc();
  9.     DECLARE_DYNCREATE(CLesson1Doc)
  10.  
  11. // Attributes
  12. public:
  13.  
  14. // Operations
  15. public:
  16.  
  17. // Overrides
  18.     // ClassWizard generated virtual function overrides
  19.     //{{AFX_VIRTUAL(CLesson1Doc)
  20.     public:
  21.     virtual BOOL OnNewDocument();
  22.     virtual BOOL OnOpenDocument(LPCTSTR lpszPathName);
  23.     //}}AFX_VIRTUAL
  24.  
  25. // Implementation
  26. public:
  27.     virtual ~CLesson1Doc();
  28.     virtual void Serialize(CArchive& ar);   // overridden for document i/o
  29. #ifdef _DEBUG
  30.     virtual void AssertValid() const;
  31.     virtual void Dump(CDumpContext& dc) const;
  32. #endif
  33.  
  34. protected:
  35.  
  36. // Generated message map functions
  37. protected:
  38.     //{{AFX_MSG(CLesson1Doc)
  39.         // NOTE - the ClassWizard will add and remove member functions here.
  40.         //    DO NOT EDIT what you see in these blocks of generated code !
  41.     //}}AFX_MSG
  42.     DECLARE_MESSAGE_MAP()
  43. };
  44.  
  45. /////////////////////////////////////////////////////////////////////////////
  46.