Click here to Skip to main content
15,886,362 members
Articles / Desktop Programming / WTL

RSS Reader Plug-in for Internet Explorer

Rate me:
Please Sign up or sign in to vote.
5.00/5 (12 votes)
16 Jul 2007CPOL4 min read 317.3K   1.3K   32  
This is a toolbar for the Internet Explorer which shows information from RSS taken from the Internet.
/*
	Project		: RSS Reader plugin for Internet Explorer
	File Name	: RRPRssItemIterator.h
	Date		: 
	Purpose		: It is the iterator used to iterate through RssItems 
				  parsed by RRPRssParser
	Note		: Used by RRPRssParser
	Send comments 
	or Bugs to	: prafulla_t@users.sourceforge.net
*/
#pragma once

#include "RRPRssItem.h"

class RRPRssItemIterator {
public:
	virtual BOOL hasNext() = 0;
	virtual RRPRssItem* getItem() = 0;
};

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
India India
Quote : "Life is all about solving problems and enjoying their solutions !! "

Comments and Discussions