equal
deleted
inserted
replaced
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_SCPDISABLED_H |
|
20 #define T_SCPDISABLED_H |
|
21 |
|
22 #include <e32base.h> |
|
23 |
|
24 #include "scpsubservicestate.h" |
|
25 |
|
26 /** |
|
27 * Disabled state |
|
28 * |
|
29 * @lib sipconnectionprovider.dll |
|
30 */ |
|
31 class TScpDisabled : public TScpSubServiceState |
|
32 { |
|
33 public: |
|
34 |
|
35 /** |
|
36 * C++ default constructor. |
|
37 */ |
|
38 TScpDisabled(); |
|
39 |
|
40 /** |
|
41 * Returns state |
|
42 * @return State |
|
43 */ |
|
44 TCCHSubserviceState State() const; |
|
45 |
|
46 /** |
|
47 * Enable |
|
48 * @param aSubService Sub service |
|
49 */ |
|
50 void EnableL( CScpSubService& aSubService ) const; |
|
51 |
|
52 /** |
|
53 * Enable |
|
54 * @param aSubService Sub service |
|
55 */ |
|
56 void NetworkFound( CScpSubService& aSubService ) const; |
|
57 |
|
58 /** |
|
59 * Network not found |
|
60 * @param aSubService Sub service |
|
61 */ |
|
62 void NetworkNotFound( CScpSubService& aSubService ) const; |
|
63 |
|
64 /** |
|
65 * Network lost |
|
66 * @param aSubService Sub service |
|
67 */ |
|
68 void NetworkLost( CScpSubService& aSubService ) const; |
|
69 |
|
70 /** |
|
71 * Service connected |
|
72 * @param aSubService Sub service |
|
73 */ |
|
74 void ServiceConnected( CScpSubService& aSubService ) const; |
|
75 }; |
|
76 |
|
77 #endif // T_SCPDISABLED_H |
|
78 |
|
79 // End of File |
|