lbs/lbsclient/inc/ctlbsclientshareddata.h
branchSymbian2
changeset 1 8758140453c0
child 6 c108117318cb
equal deleted inserted replaced
0:e8c1ea2c6496 1:8758140453c0
       
     1 // Copyright (c) 2006-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 the License "Symbian Foundation License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // @file CT_LbsClientSharedData.h
       
    15 // This contains the header file for CT_LbsClientSharedData
       
    16 // 
       
    17 //
       
    18 
       
    19 
       
    20 #ifndef __CT_LBS_CLIENT_SHARED_DATA_H__
       
    21 #define __CT_LBS_CLIENT_SHARED_DATA_H__
       
    22 
       
    23 // system includes
       
    24 #include <e32cmn.h>
       
    25 
       
    26 // Lbs includes
       
    27 #include <lbspositioninfo.h>
       
    28 #include <lbscommon.h>
       
    29 
       
    30 
       
    31 class CT_LbsClientSharedData : public CBase
       
    32 {
       
    33 public:
       
    34 	static CT_LbsClientSharedData* NewL();
       
    35 	CT_LbsClientSharedData();
       
    36 	~CT_LbsClientSharedData();
       
    37 
       
    38 private:
       
    39 	void ConstructL();
       
    40 
       
    41 public:
       
    42 	RPointerArray<TAny>	iVerifyPosInfoArr;
       
    43 	RPointerArray<TAny>	iCurrentPosInfoArr;
       
    44 	
       
    45 	TPositionModuleInfo iVerifyModuleInfo;
       
    46 	TPositionModuleInfo iCurrentModuleInfo;
       
    47 
       
    48 	TPositionModuleStatus iVerifyModuleStatus;
       
    49 	TPositionModuleStatus iCurrentModuleStatus;
       
    50 
       
    51 	TPositionModuleStatusEvent iVerifyModuleStatusEvent;
       
    52 	TPositionModuleStatusEvent iCurrentModuleStatusEvent;
       
    53 
       
    54 	TPositionUpdateOptions iVerifyUpdateOpts;
       
    55 	TPositionUpdateOptions iCurrentUpdateOpts;
       
    56 };
       
    57 
       
    58 #endif // __CT_LBS_CLIENT_SHARED_DATA_H__