ticketdoc.cpp

来自「利用MFC编写的一个可运行的车站售票系统」· C++ 代码 · 共 93 行

CPP
93
字号
// TicketDoc.cpp : implementation of the CTicketDoc class
//

#include "stdafx.h"
#include "Ticket.h"

#include "TicketDoc.h"

#include "BusManager.h"

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

/////////////////////////////////////////////////////////////////////////////
// CTicketDoc

IMPLEMENT_DYNCREATE(CTicketDoc, CDocument)

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

/////////////////////////////////////////////////////////////////////////////
// CTicketDoc construction/destruction

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

}

CTicketDoc::~CTicketDoc()
{

}

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

	// TODO: add reinitialization code here
	// (SDI documents will reuse this document)
	m_BusManager.Reset();
	m_BusManager.m_FoundTime=CTime::GetCurrentTime();

	return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// CTicketDoc serialization

void CTicketDoc::Serialize(CArchive& ar)
{
	if (ar.IsStoring())
	{
		// TODO: add storing code here
		
	}
	else
	{
		// TODO: add loading code here
		m_BusManager.Reset();
	}
	m_BusManager.Serialize(ar);
}

/////////////////////////////////////////////////////////////////////////////
// CTicketDoc diagnostics

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

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

/////////////////////////////////////////////////////////////////////////////
// CTicketDoc commands

⌨️ 快捷键说明

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