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: M-Class that capsulates Extention Features Supported by Services |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef MVIMPSTENGINEEXTENTIONFEATURES_H |
|
20 #define MVIMPSTENGINEEXTENTIONFEATURES_H |
|
21 |
|
22 // INCLUDES |
|
23 #include <e32base.h> |
|
24 #include "tvimpstenums.h" |
|
25 |
|
26 |
|
27 //CLASS DECLARATION |
|
28 /** |
|
29 * |
|
30 * This class list the M-Class for Extention Features required |
|
31 * to be supported in any Services |
|
32 * |
|
33 * @lib vimpstengine.lib |
|
34 * @since S60 5.0 |
|
35 */ |
|
36 |
|
37 //Class declaration |
|
38 class MVIMPSTEngineExtentionFeatures |
|
39 { |
|
40 |
|
41 public: |
|
42 |
|
43 /** |
|
44 * IsSupported |
|
45 * @return TVIMPSTEnums::FeatureSupport defined in tvimpstenums.h |
|
46 */ |
|
47 virtual TVIMPSTEnums::FeatureSupport IsSupported() const = 0; |
|
48 |
|
49 /** |
|
50 * SetSupported |
|
51 * @param TVIMPSTEnums::FeatureSupport defined in tvimpstenums.h |
|
52 */ |
|
53 virtual void SetSupported(TVIMPSTEnums::FeatureSupport aSupported )= 0; |
|
54 |
|
55 |
|
56 /** |
|
57 * Type of the Extention Feature |
|
58 * @return TVIMPSTEnums::ExtentionType defined in tvimpstenums.h |
|
59 */ |
|
60 |
|
61 virtual TVIMPSTEnums::ExtentionType Type() const = 0; |
|
62 |
|
63 /** |
|
64 * Destructor |
|
65 */ |
|
66 virtual ~MVIMPSTEngineExtentionFeatures() |
|
67 {} |
|
68 |
|
69 }; |
|
70 |
|
71 #endif //MVIMPSTENGINEEXTENTIONFEATURES_H |
|
72 |
|
73 |
|