equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002-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: Observer for VoD Content API* |
|
15 */ |
|
16 |
|
17 |
|
18 |
|
19 |
|
20 #ifndef MIPTVVODCONTENTOBSERVER_H |
|
21 #define MIPTVVODCONTENTOBSERVER_H |
|
22 |
|
23 #include "CIptvUtil.h" |
|
24 |
|
25 /** |
|
26 * Observer for VoD Content API that needs to be implemented by application. |
|
27 * |
|
28 * @lib |
|
29 * @since |
|
30 */ |
|
31 |
|
32 class MIptvVodContentClientObserver |
|
33 { |
|
34 public: |
|
35 /** |
|
36 * Messages from EPG manager are handled here. Messages are defined in CIptvUtil.h |
|
37 * @since Engine 1.1 |
|
38 * @param aMsg Message |
|
39 * @param aServiceId Service id. |
|
40 */ |
|
41 virtual void HandleEpgManagerMsgL(TInt aMsg, TInt aInfo, TIptvServiceId aServiceId) = 0; |
|
42 }; |
|
43 |
|
44 #endif // MIPTVVODCONTENTOBSERVER_H |
|
45 // End of File |