?? vtksdidoc.cpp
字號:
/*========================================================================= Program: Visualization Toolkit Module: $RCSfile: vtkSDIDoc.cpp,v $ Language: C++ Date: $Date: 2002/08/29 12:18:33 $ Version: $Revision: 1.1 $ Copyright (c) 1993-2002 Ken Martin, Will Schroeder, Bill Lorensen All rights reserved. See Copyright.txt or http://www.kitware.com/Copyright.htm for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notice for more information.=========================================================================*/#include "stdafx.h"#include "vtkSDI.h"#include "vtkSDIDoc.h"#ifdef _DEBUG#define new DEBUG_NEW#undef THIS_FILEstatic char THIS_FILE[] = __FILE__;#endif/////////////////////////////////////////////////////////////////////////////// CVtkSDIDocIMPLEMENT_DYNCREATE(CVtkSDIDoc, CDocument)BEGIN_MESSAGE_MAP(CVtkSDIDoc, CDocument) //{{AFX_MSG_MAP(CVtkSDIDoc) // NOTE - the ClassWizard will add and remove mapping macros here. // DO NOT EDIT what you see in these blocks of generated code! //}}AFX_MSG_MAPEND_MESSAGE_MAP()/////////////////////////////////////////////////////////////////////////////// CVtkSDIDoc construction/destructionCVtkSDIDoc::CVtkSDIDoc(){ // TODO: add one-time construction code here}CVtkSDIDoc::~CVtkSDIDoc(){}BOOL CVtkSDIDoc::OnNewDocument(){ if (!CDocument::OnNewDocument()) return FALSE; // TODO: add reinitialization code here // (SDI documents will reuse this document) return TRUE;}/////////////////////////////////////////////////////////////////////////////// CVtkSDIDoc serializationvoid CVtkSDIDoc::Serialize(CArchive& ar){ if (ar.IsStoring()) { // TODO: add storing code here } else { // TODO: add loading code here }}/////////////////////////////////////////////////////////////////////////////// CVtkSDIDoc diagnostics#ifdef _DEBUGvoid CVtkSDIDoc::AssertValid() const{ CDocument::AssertValid();}void CVtkSDIDoc::Dump(CDumpContext& dc) const{ CDocument::Dump(dc);}#endif //_DEBUG/////////////////////////////////////////////////////////////////////////////// CVtkSDIDoc commands
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -