|
1 /* |
|
2 * Copyright (c) 2002-2007 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: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #include "scpsubservicestate.h" |
|
20 #include "scpsubservice.h" |
|
21 #include "scplogger.h" |
|
22 |
|
23 // ----------------------------------------------------------------------------- |
|
24 // TScpSubServiceState::TScpSubServiceState |
|
25 // ----------------------------------------------------------------------------- |
|
26 // |
|
27 TScpSubServiceState::TScpSubServiceState() |
|
28 { |
|
29 } |
|
30 |
|
31 // ----------------------------------------------------------------------------- |
|
32 // TScpSubServiceState::ChangeState |
|
33 // ----------------------------------------------------------------------------- |
|
34 // |
|
35 void TScpSubServiceState::ChangeState( CScpSubService& aSubService, |
|
36 TCCHSubserviceState aState, |
|
37 TInt aError ) const |
|
38 { |
|
39 SCPLOGSTRING( "TScpSubServiceState::ChangeState" ); |
|
40 |
|
41 aSubService.ChangeState( aState, aError ); |
|
42 } |
|
43 |
|
44 // ----------------------------------------------------------------------------- |
|
45 // TScpSubServiceState::EnableL |
|
46 // ----------------------------------------------------------------------------- |
|
47 // |
|
48 void TScpSubServiceState::EnableL( CScpSubService& /*aSubService*/ ) const |
|
49 { |
|
50 SCPLOGSTRING( "TScpSubServiceState::EnableL" ); |
|
51 } |
|
52 |
|
53 // ----------------------------------------------------------------------------- |
|
54 // TScpSubServiceState::Disable |
|
55 // ----------------------------------------------------------------------------- |
|
56 // |
|
57 TInt TScpSubServiceState::Disable( CScpSubService& /*aSubService*/ ) const |
|
58 { |
|
59 SCPLOGSTRING( "TScpSubServiceState::Disable" ); |
|
60 |
|
61 return KErrNotSupported; |
|
62 } |
|
63 |
|
64 // ----------------------------------------------------------------------------- |
|
65 // TScpSubServiceState::NetworkFound |
|
66 // ----------------------------------------------------------------------------- |
|
67 // |
|
68 void TScpSubServiceState::NetworkFound( CScpSubService& /*aSubService*/ ) const |
|
69 { |
|
70 SCPLOGSTRING( "TScpSubServiceState::NetworkFound" ); |
|
71 } |
|
72 |
|
73 // ----------------------------------------------------------------------------- |
|
74 // TScpSubServiceState::NetworkLost |
|
75 // ----------------------------------------------------------------------------- |
|
76 // |
|
77 void TScpSubServiceState::NetworkLost( CScpSubService& /*aSubService*/ ) const |
|
78 { |
|
79 SCPLOGSTRING( "TScpSubServiceState::NetworkLost" ); |
|
80 } |
|
81 |
|
82 // ----------------------------------------------------------------------------- |
|
83 // TScpSubServiceState::NetworkNotFound |
|
84 // ----------------------------------------------------------------------------- |
|
85 // |
|
86 void TScpSubServiceState::NetworkNotFound( CScpSubService& /*aSubService*/ ) const |
|
87 { |
|
88 SCPLOGSTRING( "TScpSubServiceState::NetworkNotFound" ); |
|
89 } |
|
90 |
|
91 // ----------------------------------------------------------------------------- |
|
92 // TScpSubServiceState::ServiceInvalidSettings |
|
93 // ----------------------------------------------------------------------------- |
|
94 // |
|
95 void TScpSubServiceState::ServiceInvalidSettings( CScpSubService& /*aSubService*/ ) const |
|
96 { |
|
97 SCPLOGSTRING( "TScpSubServiceState::ServiceInvalidSettings" ); |
|
98 } |
|
99 |
|
100 // ----------------------------------------------------------------------------- |
|
101 // TScpSubServiceState::ServiceConnectionFailed |
|
102 // ----------------------------------------------------------------------------- |
|
103 // |
|
104 void TScpSubServiceState::ServiceConnectionFailed( CScpSubService& /*aSubService*/ ) const |
|
105 { |
|
106 SCPLOGSTRING( "TScpSubServiceState::ServiceConnectionFailed" ); |
|
107 } |
|
108 |
|
109 // ----------------------------------------------------------------------------- |
|
110 // TScpSubServiceState::ServiceConnected |
|
111 // ----------------------------------------------------------------------------- |
|
112 // |
|
113 void TScpSubServiceState::ServiceConnected( CScpSubService& /*aSubService*/ ) const |
|
114 { |
|
115 SCPLOGSTRING( "TScpSubServiceState::ServiceConnected" ); |
|
116 } |
|
117 |
|
118 // ----------------------------------------------------------------------------- |
|
119 // TScpSubServiceState::ServiceDisconnected |
|
120 // ----------------------------------------------------------------------------- |
|
121 // |
|
122 void TScpSubServiceState::ServiceDisconnected( CScpSubService& /*aSubService*/ ) const |
|
123 { |
|
124 SCPLOGSTRING( "TScpSubServiceState::ServiceDisconnected" ); |
|
125 } |
|
126 |
|
127 // ----------------------------------------------------------------------------- |
|
128 // TScpSubServiceState::BandwidthLimited |
|
129 // ----------------------------------------------------------------------------- |
|
130 // |
|
131 void TScpSubServiceState::BandwidthLimited( CScpSubService& /*aSubService*/ ) const |
|
132 { |
|
133 SCPLOGSTRING( "TScpSubServiceState::BandwidthLimited" ); |
|
134 } |
|
135 |
|
136 // ----------------------------------------------------------------------------- |
|
137 // TScpSubServiceState::AuthenticationFailed |
|
138 // ----------------------------------------------------------------------------- |
|
139 // |
|
140 void TScpSubServiceState::AuthenticationFailed( CScpSubService& /*aSubService*/ ) const |
|
141 { |
|
142 SCPLOGSTRING( "TScpSubServiceState::AuthenticationFailed" ); |
|
143 } |
|
144 |
|
145 // ----------------------------------------------------------------------------- |
|
146 // TScpSubServiceState::Roaming |
|
147 // ----------------------------------------------------------------------------- |
|
148 // |
|
149 void TScpSubServiceState::Roaming( CScpSubService& /*aSubService*/ ) const |
|
150 { |
|
151 SCPLOGSTRING( "TScpSubServiceState::Roaming" ); |
|
152 } |
|
153 |
|
154 // ----------------------------------------------------------------------------- |
|
155 // TScpSubServiceState::ServiceConnectionCanceled |
|
156 // ----------------------------------------------------------------------------- |
|
157 // |
|
158 void TScpSubServiceState::ServiceConnectionCanceled( CScpSubService& /*aSubService*/ ) const |
|
159 { |
|
160 SCPLOGSTRING( "TScpSubServiceState::ServiceConnectionCanceled" ); |
|
161 } |
|
162 |
|
163 // ----------------------------------------------------------------------------- |
|
164 // TScpSubServiceState::BearerNotSupported |
|
165 // ----------------------------------------------------------------------------- |
|
166 // |
|
167 void TScpSubServiceState::BearerNotSupported( CScpSubService& /*aSubService*/ ) const |
|
168 { |
|
169 SCPLOGSTRING( "TScpSubServiceState::BearerNotSupported" ); |
|
170 } |
|
171 |
|
172 // ----------------------------------------------------------------------------- |
|
173 // TScpSubServiceState::RegistrationPending |
|
174 // ----------------------------------------------------------------------------- |
|
175 // |
|
176 void TScpSubServiceState::RegistrationPending( CScpSubService& /*aSubService*/ ) const |
|
177 { |
|
178 SCPLOGSTRING( "TScpSubServiceState::RegistrationPending" ); |
|
179 } |
|
180 |
|
181 // End of File |