core/vgui/impl/mfc/vgui_mfc_doc.cxx
Go to the documentation of this file.
00001 // This is core/vgui/impl/mfc/vgui_mfc_doc.cxx
00002 #include "StdAfx.h"
00003 #include "vgui_mfc_doc.h"
00004 //:
00005 // \file
00006 //
00007 // See vgui_mfc_doc.h for a description of this file.
00008 //
00009 // \author Marko Bacic, Oxford RRG
00010 // \date   27 July 2000
00011 //
00012 
00013 #include "vgui_mfc.h"
00014 
00015 #ifdef _DEBUG
00016 #define new DEBUG_NEW
00017 #undef THIS_FILE
00018 static char THIS_FILE[] = __FILE__;
00019 #endif
00020 
00021 /////////////////////////////////////////////////////////////////////////////
00022 // vgui_mfc_doc
00023 
00024 IMPLEMENT_DYNCREATE(vgui_mfc_doc, CDocument)
00025 
00026 
00027 vgui_mfc_doc::vgui_mfc_doc()
00028 {
00029 }
00030 
00031 vgui_mfc_doc::~vgui_mfc_doc()
00032 {
00033 }
00034 
00035 
00036 /////////////////////////////////////////////////////////////////////////////
00037 // vgui_mfc_doc serialization
00038 
00039 void vgui_mfc_doc::Serialize(CArchive& ar)
00040 {
00041         if (ar.IsStoring())
00042         {
00043                 // TODO: add storing code here
00044         }
00045         else
00046         {
00047                 // TODO: add loading code here
00048         }
00049 }
00050 
00051 /////////////////////////////////////////////////////////////////////////////
00052 // vgui_mfc_doc diagnostics
00053 
00054 #ifdef _DEBUG
00055 void vgui_mfc_doc::AssertValid() const
00056 {
00057         CDocument::AssertValid();
00058 }
00059 
00060 void vgui_mfc_doc::Dump(CDumpContext& dc) const
00061 {
00062         CDocument::Dump(dc);
00063 }
00064 #endif //_DEBUG