home *** CD-ROM | disk | FTP | other *** search
/ Mastering Microsoft Visual C++ 4 (2nd Edition) / VisualC4.ISO / bitdemo / bitdedoc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-11-29  |  1.1 KB  |  45 lines

  1. // BitDeDoc.h : interface of the CBitDemoDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CBitDemoDoc : public CDocument
  6. {
  7. protected: // create from serialization only
  8.    CBitDemoDoc();
  9.    DECLARE_DYNCREATE(CBitDemoDoc)
  10.  
  11. // Attributes
  12. public:
  13.  
  14. // Operations
  15. public:
  16.  
  17. // Overrides
  18.    // ClassWizard generated virtual function overrides
  19.    //{{AFX_VIRTUAL(CBitDemoDoc)
  20.    public:
  21.    virtual BOOL OnNewDocument();
  22.    virtual void Serialize(CArchive& ar);
  23.    //}}AFX_VIRTUAL
  24.  
  25. // Implementation
  26. public:
  27.    virtual ~CBitDemoDoc();
  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(CBitDemoDoc)
  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.