home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / general / dbvlist / dbvlistdoc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-03-27  |  1.6 KB  |  64 lines

  1. // DBVListDoc.h : interface of the CDBVListDoc 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_DBVLISTDOC_H__13CCB749_ED59_11D0_8286_00C04FD73634__INCLUDED_)
  14. #define AFX_DBVLISTDOC_H__13CCB749_ED59_11D0_8286_00C04FD73634__INCLUDED_
  15.  
  16. #if _MSC_VER >= 1000
  17. #pragma once
  18. #endif // _MSC_VER >= 1000
  19.  
  20.  
  21. class CDBVListDoc : public CDocument
  22. {
  23. protected: // create from serialization only
  24.     CDBVListDoc();
  25.     DECLARE_DYNCREATE(CDBVListDoc)
  26.  
  27. // Attributes
  28. public:
  29.     CDBVListSet m_dBVListSet;
  30.  
  31. // Operations
  32. public:
  33.  
  34. // Overrides
  35.     // ClassWizard generated virtual function overrides
  36.     //{{AFX_VIRTUAL(CDBVListDoc)
  37.     public:
  38.     virtual BOOL OnNewDocument();
  39.     //}}AFX_VIRTUAL
  40.  
  41. // Implementation
  42. public:
  43.     virtual ~CDBVListDoc();
  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(CDBVListDoc)
  54.     //}}AFX_MSG
  55.     DECLARE_MESSAGE_MAP()
  56. };
  57.  
  58. /////////////////////////////////////////////////////////////////////////////
  59.  
  60. //{{AFX_INSERT_LOCATION}}
  61. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  62.  
  63. #endif // !defined(AFX_DBVLISTDOC_H__13CCB749_ED59_11D0_8286_00C04FD73634__INCLUDED_)
  64.