equal
deleted
inserted
replaced
|
1 // Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 #ifndef __MHTTPCPIMANAGER_H__ |
|
17 #define __MHTTPCPIMANAGER_H__ |
|
18 |
|
19 // System Incudes |
|
20 #include <e32base.h> |
|
21 #include <http/rhttpsession.h> |
|
22 |
|
23 |
|
24 /** Interface for a CPI manager. |
|
25 The GetProfiles and GetProfileDiffs functions need to be implemented |
|
26 */ |
|
27 class MHTTPCpiManager |
|
28 { |
|
29 public: |
|
30 /** Gets the Profile data stored on the device |
|
31 @since 8.0 |
|
32 @return An array of Profiles |
|
33 */ |
|
34 virtual RPointerArray<HBufC8>& GetProfiles() = 0; |
|
35 |
|
36 /** Gets the Profile-Diff data stored on the device |
|
37 @since 8.0 |
|
38 @return An array of Profile-Diffs |
|
39 */ |
|
40 virtual RPointerArray<HBufC8>& GetProfileDiffs() = 0; |
|
41 }; |
|
42 |
|
43 #endif // _MHTTPCPIMANAGER_H__ |