rssenclosure.h

来自「beereader source code」· C头文件 代码 · 共 37 行

H
37
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?