equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005 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: Parameter class for TAny type pointer. |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef TPHONECMDPARAMPOINTER_H |
|
19 #define TPHONECMDPARAMPOINTER_H |
|
20 |
|
21 // INCLUDES |
|
22 #include "tphonecommandparam.h" |
|
23 |
|
24 // CLASS DECLARATION |
|
25 |
|
26 /** |
|
27 * A concrete parameter class for address pointer. |
|
28 * |
|
29 */ |
|
30 class TPhoneCmdParamPointer : public TPhoneUICommandParam |
|
31 { |
|
32 public: |
|
33 |
|
34 /** |
|
35 * C++ default constructor. |
|
36 */ |
|
37 IMPORT_C TPhoneCmdParamPointer(); |
|
38 |
|
39 public: |
|
40 |
|
41 /** |
|
42 * Sets the pointer address |
|
43 * @param aInteger is integer value |
|
44 */ |
|
45 IMPORT_C void SetPointer( TAny* aPointer ); |
|
46 |
|
47 /** |
|
48 * Returns the address pointer. |
|
49 * @return Returns address of the pointer |
|
50 */ |
|
51 IMPORT_C TAny* Pointer() const; |
|
52 |
|
53 private: |
|
54 |
|
55 /** |
|
56 * The address pointer |
|
57 */ |
|
58 TAny* iPointer; |
|
59 }; |
|
60 |
|
61 #endif // TPHONECMDPARAMPOINTER_H |
|
62 |
|
63 // End of File |