equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2009 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: |
|
15 */ |
|
16 |
|
17 |
|
18 #ifndef FILEDETAILSPLUGIN_H |
|
19 #define FILEDETAILSPLUGIN_H |
|
20 |
|
21 // INCLUDES |
|
22 #include <e32std.h> |
|
23 #include <filedetailspluginif.h> |
|
24 |
|
25 |
|
26 // CLASS DECLARATION |
|
27 /** |
|
28 * Implementation of the file details plugin |
|
29 * |
|
30 */ |
|
31 NONSHARABLE_CLASS( CFileDetailsPlugin ) : public CFileDetailsPluginIF |
|
32 { |
|
33 public:// Constructors and destructor |
|
34 |
|
35 /** |
|
36 * Two-phased constructor. |
|
37 */ |
|
38 static CFileDetailsPlugin* NewL(); |
|
39 |
|
40 /** |
|
41 * C+ destructor |
|
42 */ |
|
43 virtual ~CFileDetailsPlugin(); |
|
44 |
|
45 public: // From CFileDetailsPluginIF |
|
46 |
|
47 /** |
|
48 * Shows file details based on given mpx media |
|
49 * @param aDetails Already constructed details to be shown |
|
50 * @return None |
|
51 */ |
|
52 void ShowFileDetailsL( const CMPXMedia& aMedia ); |
|
53 |
|
54 private:// Constructors and destructor |
|
55 |
|
56 /** |
|
57 * C++ constructor |
|
58 */ |
|
59 CFileDetailsPlugin(); |
|
60 |
|
61 }; |
|
62 |
|
63 #endif // FILEDETAILSPLUGIN_H |