home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / mslang / ript32 / sample / rtab_doc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-21  |  949 b   |  38 lines

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