equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002 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: Provides interface to register and unregister all interfaces. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef TCAINTERFACESIGNALLER_H |
|
21 #define TCAINTERFACESIGNALLER_H |
|
22 |
|
23 // CLASS DECLARATION |
|
24 |
|
25 /** |
|
26 * Used to signal interfaces in certain situations. |
|
27 * |
|
28 * @lib CAAdapter |
|
29 * @since 1.2 |
|
30 */ |
|
31 class TCAInterfaceSignaller |
|
32 { |
|
33 public: // New functions |
|
34 |
|
35 /** |
|
36 * Connects to IMPS engine (server) |
|
37 * Leaves with KErrNotFound if factory is not in TLS |
|
38 * @since 2.1 |
|
39 */ |
|
40 static void ConnectL(); |
|
41 |
|
42 /** |
|
43 * Register all interfaces to WV Engine. |
|
44 * Leaves with KErrNotFound if factory is not in TLS |
|
45 */ |
|
46 static void RegisterAllL(); |
|
47 |
|
48 /** |
|
49 * Unregister all interfaces to WV Engine. |
|
50 * Leaves with KErrNotFound if factory is not in TLS |
|
51 */ |
|
52 static void UnregisterAllL(); |
|
53 |
|
54 private: |
|
55 |
|
56 /** |
|
57 * C++ default constructor. |
|
58 */ |
|
59 TCAInterfaceSignaller(); |
|
60 }; |
|
61 |
|
62 #endif // TCAINTERFACESIGNALLER_H |
|
63 |
|
64 // End of File |