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

📄 hangbanxinxi.cpp

📁 基于MFC开发的航空订票系统 基于MFC开发的航空订票系统
💻 CPP
字号:
// HANGBANXINXI.cpp : implementation file
//

#include "stdafx.h"
#include "课程设计.h"
#include "HANGBANXINXI.h"

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

/////////////////////////////////////////////////////////////////////////////
// CHANGBANXINXI

IMPLEMENT_DYNCREATE(CHANGBANXINXI, CCmdTarget)

CHANGBANXINXI::CHANGBANXINXI(int hangbanhao,CString chufadi,CString mudidi,
				  long chufashijian,long daodashijian,int zuoweixinxi[3][3])
{
	this->m_HangBanHao=hangbanhao;
	this->m_ChuFaDi=chufadi;
	this->m_MuDiDi=mudidi;
	this->m_ChuFaShiJian=chufashijian;
	this->m_DaoDaShiJian=daodashijian;
	int i,j;
	for(i=0;i<3;i++)
		for(j=0;j<3;j++)
			this->m_ZuoWeiXinXi[i][j]=zuoweixinxi[i][j];
	this->NEXT=NULL;
}

CHANGBANXINXI::~CHANGBANXINXI()
{
	NEXT=NULL;
}

CHANGBANXINXI::CHANGBANXINXI()
{
}


BEGIN_MESSAGE_MAP(CHANGBANXINXI, CCmdTarget)
	//{{AFX_MSG_MAP(CHANGBANXINXI)
		// NOTE - the ClassWizard will add and remove mapping macros here.
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CHANGBANXINXI message handlers

⌨️ 快捷键说明

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