www.pudn.com > classSystem(c++).rar > 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() 
{ 
 
}