|
1 /* |
|
2 * Copyright (c) 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: Singleton |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 // INCLUDE FILES |
|
21 |
|
22 #include <msvapi.h> // CMsvSession |
|
23 #include <mtclreg.h> // CClientMtmRegistry |
|
24 #include <mtuireg.h> // CMtmUiRegistry |
|
25 #include <mtudreg.h> // CMtmUiDataRegistry |
|
26 |
|
27 #include <senduisingleton.h> |
|
28 |
|
29 |
|
30 // CONSTANTS |
|
31 |
|
32 // ============================ MEMBER FUNCTIONS =============================== |
|
33 |
|
34 // ----------------------------------------------------------------------------- |
|
35 // CSendUiSingleton::CSendUiSingleton |
|
36 // C++ default constructor can NOT contain any code, that |
|
37 // might leave. |
|
38 // ----------------------------------------------------------------------------- |
|
39 // |
|
40 CSendUiSingleton::CSendUiSingleton() |
|
41 { |
|
42 } |
|
43 |
|
44 // ----------------------------------------------------------------------------- |
|
45 // CSendUiSingleton::ConstructL |
|
46 // Symbian 2nd phase constructor can leave. |
|
47 // ----------------------------------------------------------------------------- |
|
48 // |
|
49 void CSendUiSingleton::ConstructL() |
|
50 { |
|
51 } |
|
52 |
|
53 // ----------------------------------------------------------------------------- |
|
54 // CSendUiSingleton::NewL |
|
55 // Two-phased constructor. |
|
56 // ----------------------------------------------------------------------------- |
|
57 // |
|
58 EXPORT_C CSendUiSingleton* CSendUiSingleton::NewL() |
|
59 { |
|
60 } |
|
61 |
|
62 // ----------------------------------------------------------------------------- |
|
63 // CSendUiSingleton::~CSendUiSingleton |
|
64 // Destructor |
|
65 // ----------------------------------------------------------------------------- |
|
66 // |
|
67 CSendUiSingleton::~CSendUiSingleton() |
|
68 { |
|
69 |
|
70 } |
|
71 |
|
72 // ----------------------------------------------------------------------------- |
|
73 // CSendUiSingleton::MsvSessionL |
|
74 // ----------------------------------------------------------------------------- |
|
75 // |
|
76 EXPORT_C CMsvSession& CSendUiSingleton::MsvSessionL() |
|
77 { |
|
78 |
|
79 } |
|
80 |
|
81 // ----------------------------------------------------------------------------- |
|
82 // CSendUiSingleton::ClientMtmRegistryL |
|
83 // ----------------------------------------------------------------------------- |
|
84 // |
|
85 EXPORT_C CClientMtmRegistry& CSendUiSingleton::ClientMtmRegistryL() |
|
86 { |
|
87 } |
|
88 |
|
89 // ----------------------------------------------------------------------------- |
|
90 // CSendUiSingleton::MtmUiRegistryL |
|
91 // ----------------------------------------------------------------------------- |
|
92 // |
|
93 EXPORT_C CMtmUiRegistry& CSendUiSingleton::MtmUiRegistryL() |
|
94 { |
|
95 |
|
96 } |
|
97 |
|
98 // ----------------------------------------------------------------------------- |
|
99 // CSendUiSingleton::MtmUiDataRegistryL |
|
100 // ----------------------------------------------------------------------------- |
|
101 // |
|
102 EXPORT_C CMtmUiDataRegistry& CSendUiSingleton::MtmUiDataRegistryL() |
|
103 { |
|
104 |
|
105 } |
|
106 |
|
107 // ----------------------------------------------------------------------------- |
|
108 // CSendUiSingleton::MsvSessionL |
|
109 // ----------------------------------------------------------------------------- |
|
110 // |
|
111 void CSendUiSingleton::HandleSessionEventL(TMsvSessionEvent /*aEvent*/, TAny* /*aArg1*/, TAny* /*aArg2*/, TAny* /*aArg3*/) |
|
112 { |
|
113 } |
|
114 |
|
115 |
|
116 // End of File |