home *** CD-ROM | disk | FTP | other *** search
/ Netscape Plug-Ins Developer's Kit / Netscape_Plug-Ins_Developers_Kit.iso / source / Chap17 / Ch17Doc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-10-24  |  1021 b   |  45 lines

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