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

📄 ticketdoc.cpp

📁 利用MFC编写的一个可运行的车站售票系统
💻 CPP
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -