mydoc.cpp

来自「VC面向对象的学习教程」· C++ 代码 · 共 97 行

CPP
97
字号
// MyDoc.cpp : implementation of the CMy1603Doc class
//

#include "stdafx.h"
#include "My.h"

#include "MyDoc.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CMy1603Doc

IMPLEMENT_DYNCREATE(CMy1603Doc, CDocument)

BEGIN_MESSAGE_MAP(CMy1603Doc, CDocument)
	//{{AFX_MSG_MAP(CMy1603Doc)
		// 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()

/////////////////////////////////////////////////////////////////////////////
// CMy1603Doc construction/destruction

CMy1603Doc::CMy1603Doc()
{
	// TODO: add one-time construction code here

}

CMy1603Doc::~CMy1603Doc()
{
}

BOOL CMy1603Doc::OnNewDocument()
{
	if (!CDocument::OnNewDocument())
		return FALSE;

	// TODO: add reinitialization code here
	// (SDI documents will reuse this document)

	return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// CMy1603Doc serialization

void CMy1603Doc::Serialize(CArchive& ar)
{
	if (ar.IsStoring())
	{
		ar << m_nCount;
		// TODO: add storing code here
	}
	else
	{
		ar >> m_nCount; 
		// TODO: add loading code here
	}
	for(int i=0; i<m_nCount; i++)
				m_lineList[i].Serialize(ar);

}

/////////////////////////////////////////////////////////////////////////////
// CMy1603Doc diagnostics

#ifdef _DEBUG
void CMy1603Doc::AssertValid() const
{
	CDocument::AssertValid();
}

void CMy1603Doc::Dump(CDumpContext& dc) const
{
	CDocument::Dump(dc);
}
#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CMy1603Doc commands

void CMy1603Doc::DeleteContents() 
{
	// TODO: Add your specialized code here and/or call the base class
	m_nCount = 0;	
	CDocument::DeleteContents();
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?