|
1 /* |
|
2 * Copyright (c) 2002-2006 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: A wrapper interface around MMF (Multimedia Framework) to get |
|
15 * information about MIME-types supported by MMF. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 #ifndef PROENGMMFINFOUTILITY_H |
|
22 #define PROENGMMFINFOUTILITY_H |
|
23 |
|
24 // INCLUDES |
|
25 #include <e32std.h> |
|
26 |
|
27 // FORWARD DECLARATIONS |
|
28 class CDesC8Array; |
|
29 |
|
30 // CLASS DECLARATION |
|
31 |
|
32 /** |
|
33 * A helper class used by Profiles Engine Wrapper to get the list of supported |
|
34 * MIME types from MMF. |
|
35 * |
|
36 * @lib ProfileEngine.lib |
|
37 * @since Series 60 3.1 |
|
38 */ |
|
39 NONSHARABLE_CLASS( ProEngMmfInfoUtility ) |
|
40 { |
|
41 public: // New functions |
|
42 |
|
43 /** |
|
44 * Gets the list of supported MIME types from MMF. |
|
45 * @param aMimeArray the array that contains the list of supported MIME |
|
46 * types on return |
|
47 */ |
|
48 static void GetSupportedMimeTypesL( CDesC8Array& aMimeArray ); |
|
49 |
|
50 private: // Constructor and destructor |
|
51 |
|
52 /** |
|
53 * Default constructor. This is private since this class is not intended |
|
54 * to be instantiated. |
|
55 */ |
|
56 ProEngMmfInfoUtility() {}; |
|
57 |
|
58 // Destructor. |
|
59 ~ProEngMmfInfoUtility() {}; |
|
60 }; |
|
61 |
|
62 #endif // PROENGMMFINFOUTILITY_H |
|
63 |
|
64 // End of File |