author | Sebastian Brannstrom <sebastianb@symbian.org> |
Fri, 19 Nov 2010 01:08:10 +0000 | |
branch | symbian1 |
changeset 374 | f067cee22e48 |
parent 2 | 29cda98b007e |
permissions | -rw-r--r-- |
2 | 1 |
/* |
2 |
* Copyright (c) 2007-2010 Sebastian Brannstrom, Lars Persson, EmbedDev AB |
|
3 |
* |
|
4 |
* All rights reserved. |
|
5 |
* This component and the accompanying materials are made available |
|
6 |
* under the terms of the License "Eclipse Public License v1.0" |
|
7 |
* which accompanies this distribution, and is available |
|
8 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
9 |
* |
|
10 |
* Initial Contributors: |
|
11 |
* EmbedDev AB - initial contribution. |
|
12 |
* |
|
13 |
* Contributors: |
|
14 |
* |
|
15 |
* Description: |
|
16 |
* |
|
17 |
*/ |
|
18 |
||
19 |
#ifndef FEEDPARSEROBSERVER_H_ |
|
20 |
#define FEEDPARSEROBSERVER_H_ |
|
21 |
||
22 |
#include "ShowInfo.h" |
|
23 |
#include "FeedInfo.h" |
|
24 |
||
25 |
class MFeedParserObserver |
|
26 |
{ |
|
27 |
public: |
|
28 |
virtual void NewShowL(CShowInfo& item) = 0; |
|
29 |
virtual void ParsingCompleteL(CFeedInfo *item) = 0; |
|
374
f067cee22e48
Fix for bug 3959 - updating new feeds in reverse chronological order
Sebastian Brannstrom <sebastianb@symbian.org>
parents:
2
diff
changeset
|
30 |
virtual void ParserShowUpdatedL(CShowInfo& item) = 0; |
2 | 31 |
}; |
32 |
||
33 |
#endif |