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

  1. // MDIDoc.cpp : implementation of the CMDIBindDoc 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. #include "stdafx.h"
  14. #include "MDIBind.h"
  15.  
  16. #include "MDIDoc.h"
  17.  
  18. #ifdef _DEBUG
  19. #define new DEBUG_NEW
  20. #undef THIS_FILE
  21. static char THIS_FILE[] = __FILE__;
  22. #endif
  23.  
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CMDIBindDoc
  26.  
  27. IMPLEMENT_DYNCREATE(CMDIBindDoc, CDocument)
  28.  
  29. BEGIN_MESSAGE_MAP(CMDIBindDoc, CDocument)
  30.     //{{AFX_MSG_MAP(CMDIBindDoc)
  31.         // NOTE - the ClassWizard will add and remove mapping macros here.
  32.         //    DO NOT EDIT what you see in these blocks of generated code!
  33.     //}}AFX_MSG_MAP
  34. END_MESSAGE_MAP()
  35.  
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CMDIBindDoc construction/destruction
  38.  
  39. CMDIBindDoc::CMDIBindDoc()
  40. {
  41.     // TODO: add one-time construction code here
  42.     m_pRDC=NULL;
  43. }
  44.  
  45. CMDIBindDoc::~CMDIBindDoc()
  46. {
  47. }
  48.  
  49. BOOL CMDIBindDoc::OnNewDocument()
  50. {
  51.     if (!CDocument::OnNewDocument())
  52.         return FALSE;
  53.  
  54.     // TODO: add reinitialization code here
  55.     // (SDI documents will reuse this document)
  56.  
  57.     return TRUE;
  58. }
  59.  
  60. /////////////////////////////////////////////////////////////////////////////
  61. // CMDIBindDoc serialization
  62.  
  63. void CMDIBindDoc::Serialize(CArchive& ar)
  64. {
  65.     if (ar.IsStoring())
  66.     {
  67.         // TODO: add storing code here
  68.     }
  69.     else
  70.     {
  71.         // TODO: add loading code here
  72.     }
  73. }
  74.  
  75. /////////////////////////////////////////////////////////////////////////////
  76. // CMDIBindDoc diagnostics
  77.  
  78. #ifdef _DEBUG
  79. void CMDIBindDoc::AssertValid() const
  80. {
  81.     CDocument::AssertValid();
  82. }
  83.  
  84. void CMDIBindDoc::Dump(CDumpContext& dc) const
  85. {
  86.     CDocument::Dump(dc);
  87. }
  88. #endif //_DEBUG
  89.  
  90. /////////////////////////////////////////////////////////////////////////////
  91. // CMDIBindDoc commands
  92.