equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002 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: callback functions for Network Selection class* |
|
15 */ |
|
16 |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 #ifndef MIPTVNETWORKSELECTIONOBSERVER_H |
|
22 #define MIPTVNETWORKSELECTIONOBSERVER_H |
|
23 |
|
24 // INCLUDES |
|
25 |
|
26 // CONSTANTS |
|
27 |
|
28 // MACROS |
|
29 |
|
30 // DATA TYPES |
|
31 |
|
32 // FUNCTION PROTOTYPES |
|
33 |
|
34 // FORWARD DECLARATIONS |
|
35 |
|
36 // CLASS DECLARATION |
|
37 class TIptvGetUsedIapReq; |
|
38 |
|
39 /** |
|
40 * Callback function interface for CIptvNetworkSelection. |
|
41 * |
|
42 * @lib |
|
43 * @since |
|
44 */ |
|
45 class MIptvNetworkSelectionObserver |
|
46 { |
|
47 |
|
48 public: // New functions |
|
49 |
|
50 /** |
|
51 * Callback function for GetUsedIapReqL() |
|
52 * @since |
|
53 * @param aRequestOb is pointer to the TGetUsedIapReq object which |
|
54 * was given in GetUsedIapReqL(). Observer can use it to |
|
55 * identify which request was completed. |
|
56 * @return |
|
57 */ |
|
58 virtual void GetUsedIapResp(TIptvGetUsedIapReq* aRequestOb) = 0; |
|
59 |
|
60 }; |
|
61 |
|
62 #endif // MIPTVNETWORKSELECTIONOBSERVER_H |
|
63 |
|
64 // End of File |