diff -r 10852b179f64 -r ea98413ce11f supl/locationsuplfw/terminalinitiationapi/inc/epos_suplgeocellinfo.h --- a/supl/locationsuplfw/terminalinitiationapi/inc/epos_suplgeocellinfo.h Wed Sep 15 12:40:28 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,54 +0,0 @@ -/* -* 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__