00001
00002
00003
00004 #include "stdafx.h"
00005 #include "3dvis.h"
00006
00007 #include "3dvisDoc.h"
00008
00009 #ifdef _DEBUG
00010 #define new DEBUG_NEW
00011 #undef THIS_FILE
00012 static char THIS_FILE[] = __FILE__;
00013 #endif
00014
00016
00017
00018 IMPLEMENT_DYNCREATE(CMy3dvisDoc, CDocument)
00019
00020 BEGIN_MESSAGE_MAP(CMy3dvisDoc, CDocument)
00021
00022
00023
00024
00025 END_MESSAGE_MAP()
00026
00027
00028
00029
00030 CMy3dvisDoc::CMy3dvisDoc()
00031 {
00032
00033
00034 }
00035
00036 CMy3dvisDoc::~CMy3dvisDoc()
00037 {
00038 }
00039
00040 BOOL CMy3dvisDoc::OnNewDocument()
00041 {
00042 if (!CDocument::OnNewDocument())
00043 return FALSE;
00044
00045
00046
00047
00048 return TRUE;
00049 }
00050
00051
00052
00054
00055
00056 void CMy3dvisDoc::Serialize(CArchive& ar)
00057 {
00058 if (ar.IsStoring())
00059 {
00060
00061 }
00062 else
00063 {
00064
00065 }
00066 }
00067
00069
00070
00071 #ifdef _DEBUG
00072 void CMy3dvisDoc::AssertValid() const
00073 {
00074 CDocument::AssertValid();
00075 }
00076
00077 void CMy3dvisDoc::Dump(CDumpContext& dc) const
00078 {
00079 CDocument::Dump(dc);
00080 }
00081 #endif //_DEBUG
00082
00084