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: Base class for voip command parameter classes. |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef TPHONECOMMANDPARAMVOIP_H |
|
19 #define TPHONECOMMANDPARAMVOIP_H |
|
20 |
|
21 // INCLUDES |
|
22 #include <e32std.h> |
|
23 #include "tphonecommandparam.h" |
|
24 |
|
25 |
|
26 // CLASS DECLARATION |
|
27 |
|
28 /** |
|
29 * A base class for voip command parameter. |
|
30 * |
|
31 */ |
|
32 class TPhoneCommandParamVoip : public TPhoneCommandParam |
|
33 { |
|
34 public: // enum |
|
35 |
|
36 /** |
|
37 * TPhoneParamIdVoip is list of possible voip |
|
38 * phone ui command parameters |
|
39 */ |
|
40 enum TPhoneParamIdVoip |
|
41 { |
|
42 EPhoneParamIdSelector = EPhoneParamIdLast |
|
43 }; |
|
44 |
|
45 }; |
|
46 |
|
47 #endif // TPHONECOMMANDPARAMVOIP_H |
|
48 |
|
49 // End of File |
|