|
1 /* |
|
2 * Copyright (c) 2005-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: Stub Implementation of CFindItemVoIPExtension |
|
15 * |
|
16 * |
|
17 */ |
|
18 |
|
19 #include "FindItemVoIPExtension.h" |
|
20 |
|
21 // ================= MEMBER FUNCTIONS ======================= |
|
22 |
|
23 // C++ default constructor can NOT contain any code, that |
|
24 // might leave. |
|
25 // |
|
26 #ifndef RD_VOIP_REL_2_2 |
|
27 CFindItemVoIPExtension::CFindItemVoIPExtension(): |
|
28 iVoIPSupported( EFalse ), |
|
29 iPreferredTelephonyVoIP( EFalse ) |
|
30 { |
|
31 } |
|
32 #else // RD_VOIP_REL_2_2 |
|
33 CFindItemVoIPExtension::CFindItemVoIPExtension() |
|
34 { |
|
35 } |
|
36 #endif // !RD_VOIP_REL_2_2 |
|
37 |
|
38 // Two-phased constructor. |
|
39 // |
|
40 CFindItemVoIPExtension* CFindItemVoIPExtension::NewL() |
|
41 { |
|
42 CFindItemVoIPExtension *self = |
|
43 new ( ELeave ) CFindItemVoIPExtension(); |
|
44 CleanupStack::PushL( self ); |
|
45 self->ConstructL(); |
|
46 CleanupStack::Pop(); |
|
47 return self; |
|
48 } |
|
49 |
|
50 // ConstructL |
|
51 // |
|
52 void CFindItemVoIPExtension::ConstructL() |
|
53 { |
|
54 } |
|
55 |
|
56 // Destructor |
|
57 // |
|
58 CFindItemVoIPExtension::~CFindItemVoIPExtension() |
|
59 { |
|
60 } |
|
61 |
|
62 #ifndef RD_VOIP_REL_2_2 |
|
63 // ---------------------------------------------------- |
|
64 // CFindItemVoIPExtension::HandleNotifyInt |
|
65 // ---------------------------------------------------- |
|
66 // |
|
67 void CFindItemVoIPExtension::HandleNotifyInt( |
|
68 const TUint32 /*aID*/, |
|
69 const TInt /*aNewValue*/ ) |
|
70 { |
|
71 //NO OPERATION |
|
72 } |
|
73 |
|
74 // ---------------------------------------------------- |
|
75 // CFindItemVoIPExtension::HandleNotifyError |
|
76 // ---------------------------------------------------- |
|
77 // |
|
78 void CFindItemVoIPExtension::HandleNotifyError( |
|
79 const TUint32 /*aID*/, |
|
80 const TInt /*aError*/, |
|
81 CCenRepNotifyHandler* /*aHandler*/ ) |
|
82 { |
|
83 //NO OPERATION |
|
84 } |
|
85 #endif // !RD_VOIP_REL_2_2 |
|
86 |
|
87 // ---------------------------------------------------- |
|
88 // CFindItemVoIPExtension::VoIPProfilesExistL |
|
89 // ---------------------------------------------------- |
|
90 // |
|
91 TBool CFindItemVoIPExtension::VoIPProfilesExistL() const |
|
92 { |
|
93 return EFalse; |
|
94 } |
|
95 |
|
96 // ---------------------------------------------------- |
|
97 // CFindItemVoIPExtension::VoIPProfilesExistL |
|
98 // ---------------------------------------------------- |
|
99 // |
|
100 TBool CFindItemVoIPExtension::IsPreferredTelephonyVoIP() |
|
101 { |
|
102 return EFalse; |
|
103 } |
|
104 |
|
105 // ---------------------------------------------------- |
|
106 // CFindItemVoIPExtension::IsVoIPSupported |
|
107 // |
|
108 // ---------------------------------------------------- |
|
109 TBool CFindItemVoIPExtension::IsVoIPSupported() |
|
110 { |
|
111 return EFalse; |
|
112 } |
|
113 // End of File |
|
114 |