关于vc++深入学习源码知识

源代码在线查看: propdoc.cpp

软件大小: 1719 K
上传用户: gdmichael
关键词: vc 源码
下载地址: 免注册下载 普通下载 VIP

相关代码

				// PropDoc.cpp : implementation of the CPropDoc class
				//
				
				#include "stdafx.h"
				#include "Prop.h"
				
				#include "PropDoc.h"
				
				#ifdef _DEBUG
				#define new DEBUG_NEW
				#undef THIS_FILE
				static char THIS_FILE[] = __FILE__;
				#endif
				
				/////////////////////////////////////////////////////////////////////////////
				// CPropDoc
				
				IMPLEMENT_DYNCREATE(CPropDoc, CDocument)
				
				BEGIN_MESSAGE_MAP(CPropDoc, CDocument)
					//{{AFX_MSG_MAP(CPropDoc)
						// 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()
				
				/////////////////////////////////////////////////////////////////////////////
				// CPropDoc construction/destruction
				
				CPropDoc::CPropDoc()
				{
					// TODO: add one-time construction code here
				
				}
				
				CPropDoc::~CPropDoc()
				{
				}
				
				BOOL CPropDoc::OnNewDocument()
				{
					if (!CDocument::OnNewDocument())
						return FALSE;
				
					// TODO: add reinitialization code here
					// (SDI documents will reuse this document)
				
					return TRUE;
				}
				
				
				
				/////////////////////////////////////////////////////////////////////////////
				// CPropDoc serialization
				
				void CPropDoc::Serialize(CArchive& ar)
				{
					if (ar.IsStoring())
					{
						// TODO: add storing code here
					}
					else
					{
						// TODO: add loading code here
					}
				}
				
				/////////////////////////////////////////////////////////////////////////////
				// CPropDoc diagnostics
				
				#ifdef _DEBUG
				void CPropDoc::AssertValid() const
				{
					CDocument::AssertValid();
				}
				
				void CPropDoc::Dump(CDumpContext& dc) const
				{
					CDocument::Dump(dc);
				}
				#endif //_DEBUG
				
				/////////////////////////////////////////////////////////////////////////////
				// CPropDoc commands
							

相关资源