diff -r e8c1ea2c6496 -r 8758140453c0 lbs/common/inc/ctlbsshareddata.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lbs/common/inc/ctlbsshareddata.h Thu Jan 21 12:53:44 2010 +0000 @@ -0,0 +1,75 @@ +// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of the License "Symbian Foundation License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// @file CT_LbsSharedData.h +// This contains CT_LbsSharedData +// +// + + +#ifndef __T_LBS_SHARED_DATA_H__ +#define __T_LBS_SHARED_DATA_H__ + +// system includes +#include + +// Lbs includes +#include +#include + +#include +#include +#include +#include +#include +#include + +class CT_LbsSharedData : public CBase +{ +public: + static CT_LbsSharedData* NewL(); + CT_LbsSharedData(); + virtual ~CT_LbsSharedData(); + +protected: + virtual void ConstructL(); + +public: + RPointerArray iVerifyPosInfoArr; + RPointerArray iCurrentPosInfoArr; + + // For logging, different type arrays to store multiple events + RPointerArray iSelfLocateLogInfoArr; + RPointerArray iNetworkLocateLogInfoArr; + RPointerArray iExternalLocateLogInfoArr; + RPointerArray iX3PLocateLogInfoArr; + RPointerArray iAssistanceDataLogInfoArr; + + TPositionModuleInfo iVerifyModuleInfo; + TPositionModuleInfo iCurrentModuleInfo; + + TPositionModuleStatus iVerifyModuleStatus; + TPositionModuleStatus iCurrentModuleStatus; + + TPositionModuleStatusEvent iVerifyModuleStatusEvent; + TPositionModuleStatusEvent iCurrentModuleStatusEvent; + + TPositionUpdateOptions iVerifyUpdateOpts; + TPositionUpdateOptions iCurrentUpdateOpts; + + /** Flag used to indicate if the A-GPS integration test module is being used during testing. + */ + TBool iTestModuleInUse; +}; + +#endif // __T_LBS_SHARED_DATA_H__