⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rsssource.cpp

📁 beereader source code
💻 CPP
字号:
// RSSSource.cpp: implementation of the CRSSSource class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "RSSSource.h"

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

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

CRSSSource::CRSSSource() : CRSSElement( _T("source") )
{
	m_Text = _T("");
	m_URL = _T("");
}

CRSSSource::~CRSSSource()
{

}

void CRSSSource::SetText(CString text)
{
	m_Text = text;
}

CString CRSSSource::GetText()
{
	return m_Text;
}

void CRSSSource::SetURL(CString url)
{
	m_URL = url;
}

CString CRSSSource::GetURL()
{
	return m_URL;
}

⌨️ 快捷键说明

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