equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2010 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 "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: media object handler callbacks |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef MEDIAOBJECTHANDLER_H_ |
|
20 #define MEDIAOBJECTHANDLER_H_ |
|
21 #include <mdccommon.h> |
|
22 #include "common.h" |
|
23 |
|
24 class MdeMEdiaObserver |
|
25 { |
|
26 public: |
|
27 /* |
|
28 * HarvestingCompletedL signals when harvesting completed |
|
29 */ |
|
30 virtual void HarvestingCompletedL() = 0; |
|
31 }; |
|
32 |
|
33 class MMediaObjectHandler |
|
34 { |
|
35 public: |
|
36 /* |
|
37 * HandleMdeItemL callback to notify for Mde item |
|
38 * @param TItemId aObjId object id of item |
|
39 * @param TCPixActionType aActionType cpix action type |
|
40 */ |
|
41 virtual void HandleMdeItemL( TItemId aObjId, TCPixActionType aActionType) = 0; |
|
42 #ifdef __PERFORMANCE_DATA |
|
43 virtual void UpdateLogL() = 0; |
|
44 # endif |
|
45 }; |
|
46 |
|
47 #endif /* MEDIAOBJECTHANDLER_H_ */ |