#include <3dvisDoc.h>
Public Methods | |
| virtual BOOL | OnNewDocument () |
| virtual void | Serialize (CArchive &ar) |
| virtual | ~CMy3dvisDoc () |
Protected Methods | |
| CMy3dvisDoc () | |
|
|
Definition at line 30 of file 3dvisDoc.cpp.
00031 {
00032 // TODO: add one-time construction code here
00033
00034 }
|
|
|
Definition at line 36 of file 3dvisDoc.cpp.
00037 {
00038 }
|
|
|
Definition at line 40 of file 3dvisDoc.cpp.
00041 {
00042 if (!CDocument::OnNewDocument())
00043 return FALSE;
00044
00045 // TODO: add reinitialization code here
00046 // (SDI documents will reuse this document)
00047
00048 return TRUE;
00049 }
|
|
|
Definition at line 56 of file 3dvisDoc.cpp.
00057 {
00058 if (ar.IsStoring())
00059 {
00060 // TODO: add storing code here
00061 }
00062 else
00063 {
00064 // TODO: add loading code here
00065 }
00066 }
|
1.3-rc2