home *** CD-ROM | disk | FTP | other *** search
/ Sams Cobol 24 Hours / Sams_Cobol_24_Hours.iso / Cobol32 / CRW / 32BIT / DISK6 / CRPEPDOC.H_ / CRPEPDOC.H
C/C++ Source or Header  |  1995-08-29  |  1KB  |  45 lines

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