webinfo.cpp

来自「深入浅出Visual C++入门进阶与应用实例 随书光盘 作者 何志丹」· C++ 代码 · 共 36 行

CPP
36
字号
// WebInfo.cpp: implementation of the CWebInfo class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "WebInfo.h"

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

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

CWebInfo::CWebInfo()
{

}

CWebInfo::~CWebInfo()
{

}

CWebInfo::CWebInfo(CWebInfoSet& rs)
{
	m_nID = rs.m_ID ;
	m_strWebName = rs.m_WebName ;
	m_strLinkFormat = rs.m_LinkFormat ;
	m_strLink1 = rs.m_strLink1 ;
	m_strLink2 = rs.m_strLink2;
}

⌨️ 快捷键说明

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