engine/inc/FeedParser.h
branchRCL_3
changeset 369 c683165bec63
parent 342 9441fb8fd60d
child 374 f067cee22e48
--- a/engine/inc/FeedParser.h	Tue Nov 16 10:26:34 2010 +0000
+++ b/engine/inc/FeedParser.h	Tue Nov 16 13:05:42 2010 +0000
@@ -62,6 +62,13 @@
 	ELatin1
 };
 
+enum TFeedDirection
+	{
+	EFeedUnknown,
+	EFeedAddsAtTop,
+	EFeedAddsAtBottom
+	};
+
 const int KBufferLength = 1024;
 
 class CFeedParser : public CBase, public Xml::MContentHandler 
@@ -102,6 +109,8 @@
 	TEncoding iEncoding;
 	RFs& iRfs;
 	TInt iFileSize;
+	TFeedDirection iFeedDirection;
+	TTime iPreviousPubDate;
 };
 
 #endif