student.cpp

来自「一个驾校学员的数据库管理软件。采用ACCESS数据库。非常方便。」· C++ 代码 · 共 42 行

CPP
42
字号
// Student.cpp: implementation of the CStudent class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "AutoStuMis.h"
#include "Student.h"
#include "Item.h"

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

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

CStudent::CStudent()
{
	m_F_Sex = _T("");
	m_F_SN = _T("");
	m_F_Address = _T("");
	m_F_Tel = _T("");
	m_F_Date = 0;
	m_F_AutoNo = _T("");
	m_F_TypeID = 0;

	m_tmUpAuto = 0;
	m_tmExamField = 0;
	m_tmExamRoad = 0;
	m_nExamTypeID = 0;
	m_tmEnd = 0;

}

CStudent::~CStudent()
{

}

⌨️ 快捷键说明

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