?? rsscloud.cpp
字號:
// RSSCloud.cpp: implementation of the CRSSCloud class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "RSSCloud.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CRSSCloud::CRSSCloud() : CRSSElement( _T("cloud") )
{
m_Domain = _T("");
m_Path = _T("");
m_Port = 0;
m_Protocal = _T("");
m_RegisterProcedure = _T("");
}
CRSSCloud::~CRSSCloud()
{
}
void CRSSCloud::SetDomain(CString domain)
{
m_Domain = domain;
}
CString CRSSCloud::GetDomain()
{
return m_Domain;
}
void CRSSCloud::SetPath(CString path)
{
m_Path = path;
}
CString CRSSCloud::GetPath()
{
return m_Path;
}
void CRSSCloud::SetPort(int port)
{
m_Port = port;
}
int CRSSCloud::GetPort()
{
return m_Port;
}
void CRSSCloud::SetProtocal(CString protocal)
{
m_Protocal = protocal;
}
CString CRSSCloud::GetProtocal()
{
return m_Protocal;
}
void CRSSCloud::SetRegisterProcedure(CString procedure)
{
m_RegisterProcedure = procedure;
}
CString CRSSCloud::GetRegisterProcedure()
{
return m_RegisterProcedure;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -