diff -r d746aee05493 -r 02ba3f1733c6 supl/locationsuplfw/terminalinitiationapi/inc/epos_suplgeocellinfo.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/supl/locationsuplfw/terminalinitiationapi/inc/epos_suplgeocellinfo.h Thu Aug 19 10:20:18 2010 +0300 @@ -0,0 +1,54 @@ +/* +* Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: Data structure to hold cell information for geo tagging purposes. +* +*/ + +/*! \file epos_suplgeocellinfo.h + \brief Triggering classes +*/ + +#ifndef __EPOS_SUPLGEOCELLINFO_H__ +#define __EPOS_SUPLGEOCELLINFO_H__ + +// ========================================== + +/** + * Cell types + */ +enum TGeoCellType + { + /** GSM Cell. */ + EGeoGsmCell = 0, + /** WCDMA cell. */ + EGeoWcdmaCell = 1 + }; + +/** + * Class defines detailed information for gsm/wcdma cell. + * + * @since S60 5.2 + */ +struct TGeoCellInfo + { + TInt iMNC; + TInt iMCC; + TInt iCid; + TInt iLac; + TBool iConnectionPrompt; + TBool iWlanOnly; + TGeoCellType iGeoCellType; + }; + +#endif //__EPOS_SUPLGEOCELLINFO_H__