www.pudn.com > CapIT_src.zip > CapITDoc.cpp


// CapITDoc.cpp : implementation of the CCapITDoc class 
// 
 
/******************************************************************************\ 
*       This is a part of the Microsoft Source Code Samples.  
*       Copyright (C) 1993-1997 Microsoft Corporation. 
*       All rights reserved.  
*       This source code is only intended as a supplement to  
*       Microsoft Development Tools and/or WinHelp documentation. 
*       See these sources for detailed information regarding the  
*       Microsoft samples programs. 
\******************************************************************************/ 
 
 
#include "stdafx.h" 
#include "CapIT.h" 
 
#include "CapITDoc.h" 
 
#ifdef _DEBUG 
#define new DEBUG_NEW 
#undef THIS_FILE 
static char THIS_FILE[] = __FILE__; 
#endif 
 
///////////////////////////////////////////////////////////////////////////// 
// CCapITDoc 
 
IMPLEMENT_DYNCREATE(CCapITDoc, CDocument) 
 
BEGIN_MESSAGE_MAP(CCapITDoc, CDocument) 
	//{{AFX_MSG_MAP(CCapITDoc) 
		// NOTE - the ClassWizard will add and remove mapping macros here. 
		//    DO NOT EDIT what you see in these blocks of generated code! 
	//}}AFX_MSG_MAP 
END_MESSAGE_MAP() 
 
///////////////////////////////////////////////////////////////////////////// 
// CCapITDoc construction/destruction 
 
CCapITDoc::CCapITDoc() 
{ 
	// TODO: add one-time construction code here 
 
} 
 
CCapITDoc::~CCapITDoc() 
{ 
} 
 
BOOL CCapITDoc::OnNewDocument() 
{ 
	if (!CDocument::OnNewDocument()) 
		return FALSE; 
 
	// TODO: add reinitialization code here 
	// (SDI documents will reuse this document) 
 
	return TRUE; 
} 
 
 
 
///////////////////////////////////////////////////////////////////////////// 
// CCapITDoc serialization 
 
void CCapITDoc::Serialize(CArchive& ar) 
{ 
	if (ar.IsStoring()) 
	{ 
		// TODO: add storing code here 
	} 
	else 
	{ 
		// TODO: add loading code here 
	} 
} 
 
///////////////////////////////////////////////////////////////////////////// 
// CCapITDoc diagnostics 
 
#ifdef _DEBUG 
void CCapITDoc::AssertValid() const 
{ 
	CDocument::AssertValid(); 
} 
 
void CCapITDoc::Dump(CDumpContext& dc) const 
{ 
	CDocument::Dump(dc); 
} 
#endif //_DEBUG 
 
///////////////////////////////////////////////////////////////////////////// 
// CCapITDoc commands