lbstest/lbstestproduct/lbsptbmtlr/src/ctlbsptbmtlrshareddata.cpp
changeset 0 9cfd9a3ee49c
equal deleted inserted replaced
-1:000000000000 0:9cfd9a3ee49c
       
     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 ctlbsptbmtlrshareddata.cpp
       
    15 // This file contains the shared data class for the Lbs MTLR Test server
       
    16 // 
       
    17 //
       
    18 
       
    19 
       
    20 #include "ctlbsptbmtlrshareddata.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_LbsPTBMTLRSharedData* CT_LbsPTBMTLRSharedData::NewL()
       
    33 	{
       
    34 	CT_LbsPTBMTLRSharedData* sharedData=new(ELeave) CT_LbsPTBMTLRSharedData();
       
    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_LbsPTBMTLRSharedData::ConstructL()
       
    53 	{
       
    54 	CT_LbsSharedData::ConstructL();
       
    55 	}
       
    56 
       
    57 
       
    58 /**
       
    59   Function : CT_LbsPTBMTLRSharedData
       
    60   Description : Constructor
       
    61   @internalTechnology
       
    62   @param :
       
    63   @return : N/A
       
    64   @precondition : none
       
    65   @postcondition : none
       
    66 */
       
    67 CT_LbsPTBMTLRSharedData::CT_LbsPTBMTLRSharedData()
       
    68 	{
       
    69 	}
       
    70 	
       
    71 /**
       
    72   Function : ~CT_LbsPTBMTLRSharedData
       
    73   Description : Destructor
       
    74   @internalTechnology
       
    75   @param :
       
    76   @return : N/A
       
    77   @precondition : none
       
    78   @postcondition : none
       
    79 */	
       
    80 CT_LbsPTBMTLRSharedData::~CT_LbsPTBMTLRSharedData()
       
    81 	{
       
    82 /*	for (TInt i = 0; i < iUpdateArr.Count(); ++i)
       
    83 		{
       
    84 		delete iUpdateArr[i];		
       
    85 		}
       
    86 	iUpdateArr.Close();
       
    87 */	}
       
    88 
       
    89