Files correlati : Ricompilazione Demo : [ ] Commento : Riportata la versione 3.1 patch 766 git-svn-id: svn://10.65.10.50/trunk@14628 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			76 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
| // ZTestDoc.cpp : implementation of the CZTestDoc class
 | |
| //
 | |
| 
 | |
| #include "stdafx.h"
 | |
| #include "ZTest.h"
 | |
| 
 | |
| #include "ZTestDoc.h"
 | |
| 
 | |
| #ifdef _DEBUG
 | |
| #define new DEBUG_NEW
 | |
| #undef THIS_FILE
 | |
| static char THIS_FILE[] = __FILE__;
 | |
| #endif
 | |
| 
 | |
| /////////////////////////////////////////////////////////////////////////////
 | |
| // CZTestDoc
 | |
| 
 | |
| IMPLEMENT_DYNCREATE(CZTestDoc, CDocument)
 | |
| 
 | |
| BEGIN_MESSAGE_MAP(CZTestDoc, CDocument)
 | |
| 	//{{AFX_MSG_MAP(CZTestDoc)
 | |
| 	//}}AFX_MSG_MAP
 | |
| END_MESSAGE_MAP()
 | |
| 
 | |
| /////////////////////////////////////////////////////////////////////////////
 | |
| // CZTestDoc construction/destruction
 | |
| 
 | |
| CZTestDoc::CZTestDoc()
 | |
| {
 | |
| }
 | |
| 
 | |
| CZTestDoc::~CZTestDoc()
 | |
| {
 | |
| }
 | |
| 
 | |
| BOOL CZTestDoc::OnNewDocument()
 | |
| {
 | |
| 	if (!CDocument::OnNewDocument())
 | |
| 		return FALSE;
 | |
| 
 | |
| 	return TRUE;
 | |
| }
 | |
| 
 | |
| 
 | |
| 
 | |
| /////////////////////////////////////////////////////////////////////////////
 | |
| // CZTestDoc serialization
 | |
| 
 | |
| void CZTestDoc::Serialize(CArchive& ar)
 | |
| {
 | |
| 	if (ar.IsStoring())
 | |
| 	{
 | |
| 	}
 | |
| 	else
 | |
| 	{
 | |
| 	}
 | |
| }
 | |
| 
 | |
| /////////////////////////////////////////////////////////////////////////////
 | |
| // CZTestDoc diagnostics
 | |
| 
 | |
| #ifdef _DEBUG
 | |
| void CZTestDoc::AssertValid() const
 | |
| {
 | |
| 	CDocument::AssertValid();
 | |
| }
 | |
| 
 | |
| void CZTestDoc::Dump(CDumpContext& dc) const
 | |
| {
 | |
| 	CDocument::Dump(dc);
 | |
| }
 | |
| #endif //_DEBUG
 | |
| 
 | |
| /////////////////////////////////////////////////////////////////////////////
 | |
| // CZTestDoc commands
 |