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

📄 rssimage.h

📁 beereader source code
💻 H
字号:
// RSSImage.h: interface for the CRSSImage class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_RSSIMAGE_H__23B445C2_7383_43B0_BF3C_90C54BEF6AAF__INCLUDED_)
#define AFX_RSSIMAGE_H__23B445C2_7383_43B0_BF3C_90C54BEF6AAF__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#if !defined( RSSITEM )
#include "RSSItem.h"
#endif

class CRSSImage : public CRSSElement  
{
public:
	int GetHeight();
	void SetHeight( int h );
	int GetWidth();
	void SetWidth( int w );
	CString GetLink();
	void SetLink( CString link );
	CString GetURL();
	void SetURL( CString url );
	CString GetTitle();
	void SetTitle(CString title);
	CString GetDescription();
	void SetDescription( CString description );
	CRSSImage();
	virtual ~CRSSImage();

private:
	//元素下可能出现的子元素。
	CString		m_Title; //标题;
	CString		m_Description; //描述。
	CString		m_URL; //链接。
	CString		m_Link; //图片链接。
	int			m_width; //图片宽。
	int			m_height; //图片高。
	
};

#endif // !defined(AFX_RSSIMAGE_H__23B445C2_7383_43B0_BF3C_90C54BEF6AAF__INCLUDED_)

⌨️ 快捷键说明

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