|
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 #ifndef T_SCPENABLED_H |
|
20 #define T_SCPENABLED_H |
|
21 |
|
22 #include <e32base.h> |
|
23 |
|
24 #include "scpsubservicestate.h" |
|
25 |
|
26 /** |
|
27 * Enabled state |
|
28 * |
|
29 * @lib sipconnectionprovider.dll |
|
30 */ |
|
31 class TScpEnabled : public TScpSubServiceState |
|
32 { |
|
33 public: |
|
34 /** |
|
35 * C++ default constructor. |
|
36 */ |
|
37 TScpEnabled(); |
|
38 |
|
39 /** |
|
40 * Returns state |
|
41 * @return State |
|
42 */ |
|
43 TCCHSubserviceState State() const; |
|
44 |
|
45 /** |
|
46 * Disable |
|
47 * @param aSubService Sub service |
|
48 */ |
|
49 TInt Disable( CScpSubService& aSubService ) const; |
|
50 |
|
51 /** |
|
52 * Network lost |
|
53 * @param aSubService Sub service |
|
54 */ |
|
55 void NetworkLost( CScpSubService& aSubService ) const; |
|
56 |
|
57 /** |
|
58 * Service connected |
|
59 * @param aSubService Sub service |
|
60 */ |
|
61 void ServiceConnected( CScpSubService& aSubService ) const; |
|
62 |
|
63 /** |
|
64 * Service connection failed |
|
65 * @param aSubService Sub service |
|
66 */ |
|
67 void ServiceConnectionFailed( CScpSubService& aSubService ) const; |
|
68 |
|
69 /** |
|
70 * Service disconnected |
|
71 * @param aSubService Sub service |
|
72 */ |
|
73 void ServiceDisconnected( CScpSubService& aSubService ) const; |
|
74 |
|
75 /** |
|
76 * Bandwidth limited |
|
77 * @param aSubService Sub service |
|
78 */ |
|
79 void BandwidthLimited( CScpSubService& aSubService ) const; |
|
80 |
|
81 /** |
|
82 * Roaming ongoing |
|
83 * @param aSubService Sub service |
|
84 */ |
|
85 void Roaming( CScpSubService& aSubService ) const; |
|
86 }; |
|
87 |
|
88 #endif // T_SCPENABLED_H |
|
89 |
|
90 // End of File |