homesync/contentmanager/cmserver/cmstoremanager/inc/cmsmvideoandimagemngrobserver.h
equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2008 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: store file manager observer for images and videos |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef __CMSMVIDEOANDIMAGEMNGROBSERVER_H |
|
21 #define __CMSMVIDEOANDIMAGEMNGROBSERVER_H |
|
22 |
|
23 |
|
24 // CLASS DECLARATION |
|
25 /** |
|
26 * Video and image manager observer class definition |
|
27 * |
|
28 * @lib cmstoremanager.lib |
|
29 * |
|
30 * @since S60 v3.1 |
|
31 */ |
|
32 class MCmSmVideoAndImageMngrObserver |
|
33 { |
|
34 public: |
|
35 |
|
36 /** |
|
37 * Call back for observer |
|
38 * |
|
39 * @since S60 5.1 |
|
40 * @param aStatus, KErrNone if no errors, otherwise |
|
41 * system wide error codes |
|
42 * @return None |
|
43 */ |
|
44 virtual void ImagesAndVideosReady( const TInt aStatus ) = 0; |
|
45 }; |
|
46 |
|
47 #endif // __CMSMVIDEOANDIMAGEMNGROBSERVER_H |
|
48 |