⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mydoc.cpp

📁 VC面向对象的学习教程
💻 CPP
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -