equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of the License "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: UrlHandler base class. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef URL_HANDLER_H |
|
20 #define URL_HANDLER_H |
|
21 |
|
22 |
|
23 // INCLUDES |
|
24 #include <e32base.h> |
|
25 |
|
26 #include "LoadObserver.h" |
|
27 |
|
28 // CONSTANTS |
|
29 |
|
30 // MACROS |
|
31 |
|
32 // DATA TYPES |
|
33 |
|
34 // FUNCTION PROTOTYPES |
|
35 |
|
36 // FORWARD DECLARATIONS |
|
37 |
|
38 // CLASS DECLARATION |
|
39 |
|
40 |
|
41 /** |
|
42 * UrlHandler base class. |
|
43 * |
|
44 * \b Library: FeedsEngine.lib |
|
45 * |
|
46 * @since 3.0 |
|
47 */ |
|
48 class CUrlHandler: public CBase |
|
49 { |
|
50 public: |
|
51 /** |
|
52 * Loads the given url -- asynchronously |
|
53 * |
|
54 * @since 3.0 |
|
55 * @param aUrl The url to load |
|
56 * @param aObserver The load observer. |
|
57 * @return void. |
|
58 */ |
|
59 virtual void LoadUrlL(const TDesC& aUrl, MLoadObserver& aObserver) = 0; |
|
60 }; |
|
61 |
|
62 #endif // URL_HANDLER_H |
|
63 |
|
64 // End of File |