📄 rssenclosure.h
字号:
// RssEnclosure.h: interface for the CRssEnclosure class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_RSSENCLOSURE_H__4993081C_45FD_4068_B3C8_E9D22564482C__INCLUDED_)
#define AFX_RSSENCLOSURE_H__4993081C_45FD_4068_B3C8_E9D22564482C__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#if !defined( RSSELEMENT)
#include "RSSElement.h"
#endif
class CRSSEnclosure : public CRSSElement
{
public:
int GetLength();
void SetLength( int length );
CString GetURL();
void SetURL( CString url );
CString GetType();
void SetType( CString type );
CRSSEnclosure();
virtual ~CRSSEnclosure();
private:
///该元素中可能出现的属性
CString m_URL; //链接。
int m_Length; //长度。
CString m_Type; //类型。
};
#endif // !defined(AFX_RSSENCLOSURE_H__4993081C_45FD_4068_B3C8_E9D22564482C__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -