|
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // @file ctlbshybridmtlrshareddata.cpp |
|
15 // This file contains the shared data class for the Lbs MTLR Test server |
|
16 // |
|
17 // |
|
18 |
|
19 |
|
20 #include "ctlbshybridcombinedshareddata.h" |
|
21 |
|
22 |
|
23 /** |
|
24 Function : NewL |
|
25 Description : Constructor |
|
26 @internalTechnology |
|
27 @param : |
|
28 @return : N/A |
|
29 @precondition : none |
|
30 @postcondition : none |
|
31 */ |
|
32 CT_LbsHybridCombinedSharedData* CT_LbsHybridCombinedSharedData::NewL() |
|
33 { |
|
34 CT_LbsHybridCombinedSharedData* sharedData=new(ELeave) CT_LbsHybridCombinedSharedData(); |
|
35 CleanupStack::PushL(sharedData); |
|
36 sharedData->ConstructL(); |
|
37 CleanupStack::Pop(sharedData); |
|
38 |
|
39 return sharedData; |
|
40 } |
|
41 |
|
42 |
|
43 /** |
|
44 Function : ConstructL |
|
45 Description : Constructor |
|
46 @internalTechnology |
|
47 @param : |
|
48 @return : N/A |
|
49 @precondition : none |
|
50 @postcondition : none |
|
51 */ |
|
52 void CT_LbsHybridCombinedSharedData::ConstructL() |
|
53 { |
|
54 CT_LbsSharedData::ConstructL(); |
|
55 } |
|
56 |
|
57 |
|
58 /** |
|
59 Function : CT_LbsHybridCombinedSharedData |
|
60 Description : Constructor |
|
61 @internalTechnology |
|
62 @param : |
|
63 @return : N/A |
|
64 @precondition : none |
|
65 @postcondition : none |
|
66 */ |
|
67 CT_LbsHybridCombinedSharedData::CT_LbsHybridCombinedSharedData() |
|
68 { |
|
69 } |
|
70 |
|
71 /** |
|
72 Function : ~CT_LbsHybridCombinedSharedData |
|
73 Description : Destructor |
|
74 @internalTechnology |
|
75 @param : |
|
76 @return : N/A |
|
77 @precondition : none |
|
78 @postcondition : none |
|
79 */ |
|
80 CT_LbsHybridCombinedSharedData::~CT_LbsHybridCombinedSharedData() |
|
81 { |
|
82 |
|
83 } |
|
84 |
|
85 |