home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / database / mfcrows / mfcrowdoc.h < prev    next >
C/C++ Source or Header  |  1998-03-26  |  2KB  |  66 lines

  1. // MFCRowDoc.h : interface of the CMFCRowDoc class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. #if !defined(AFX_MFCROWDOC_H__2B60A702_22FC_11D1_8FD3_000000000000__INCLUDED_)
  14. #define AFX_MFCROWDOC_H__2B60A702_22FC_11D1_8FD3_000000000000__INCLUDED_
  15.  
  16. #if _MSC_VER >= 1000
  17. #pragma once
  18. #endif // _MSC_VER >= 1000
  19.  
  20.  
  21. class CMFCRowDoc : public CDocument
  22. {
  23. protected: // create from serialization only
  24.     CMFCRowDoc();
  25.     DECLARE_DYNCREATE(CMFCRowDoc)
  26.  
  27. // Attributes
  28. public:
  29.     CMFCRowSet m_mFCRowSet;
  30.  
  31. // Operations
  32. public:
  33.  
  34. // Overrides
  35.     // ClassWizard generated virtual function overrides
  36.     //{{AFX_VIRTUAL(CMFCRowDoc)
  37.     public:
  38.     virtual BOOL OnNewDocument();
  39.     //}}AFX_VIRTUAL
  40.  
  41. // Implementation
  42. public:
  43.     virtual ~CMFCRowDoc();
  44. #ifdef _DEBUG
  45.     virtual void AssertValid() const;
  46.     virtual void Dump(CDumpContext& dc) const;
  47. #endif
  48.  
  49. protected:
  50.  
  51. // Generated message map functions
  52. protected:
  53.     //{{AFX_MSG(CMFCRowDoc)
  54.         // NOTE - the ClassWizard will add and remove member functions here.
  55.         //    DO NOT EDIT what you see in these blocks of generated code !
  56.     //}}AFX_MSG
  57.     DECLARE_MESSAGE_MAP()
  58. };
  59.  
  60. /////////////////////////////////////////////////////////////////////////////
  61.  
  62. //{{AFX_INSERT_LOCATION}}
  63. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  64.  
  65. #endif // !defined(AFX_MFCROWDOC_H__2B60A702_22FC_11D1_8FD3_000000000000__INCLUDED_)
  66.