📄 usernode.cpp
字号:
// UserNode.cpp: implementation of the CUserNode class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "ClassSystem.h"
#include "UserNode.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CUserNode::CUserNode(UINT key,CString account,CString name,CString major,CString password,CString city ,CString college ,
CString dormitory,CString phone,CString mobilephone ,CString email,
CString homeAddress,CString postNumber,CString cet4,CString cet6 ,
CString description,CUserNode *next )
{
this->m_key = key;
this->m_account = account;
this->m_name = name;
this->m_major = major;
this->m_password = password;
this->m_city = city;
this->m_college = college;
this->m_dormitory = dormitory;
this->m_phone = phone;
this->m_mobilephone = mobilephone;
this->m_email = email;
this->m_homeAddress = homeAddress;
this->m_postNumber = postNumber;
this->m_CET4 = cet4;
this->m_CET6 = cet6;
this->m_description = description;
this->next = next;
}
CUserNode::~CUserNode()
{
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -