📄 rssguid.cpp
字号:
// RSSGuid.cpp: implementation of the CRSSGuid class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "RSSGuid.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CRSSGuid::CRSSGuid() : CRSSElement( _T("guid") )
{
m_IsPermaLink = TRUE;
m_Text = _T("");
}
CRSSGuid::~CRSSGuid()
{
}
BOOL CRSSGuid::GetIsPermaLink()
{
return m_IsPermaLink;
}
CString CRSSGuid::GetIsPermaLinkString()
{
return m_IsPermaLink ? _T("True") : _T("Flase");
}
void CRSSGuid::SetIsPermaLink(BOOL IsPermaLink)
{
m_IsPermaLink = IsPermaLink;
}
void CRSSGuid::SetIsPermaLink(CString IsPermaLink)
{
m_IsPermaLink = IsPermaLink.CompareNoCase( _T("TRUE") )==0 ? TRUE : FALSE;
}
void CRSSGuid::SetText(CString text)
{
m_Text = text;
}
CString CRSSGuid::GetText()
{
return m_Text;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -