supl/locationsuplfw/terminalinitiationapi/inc/epos_suplgeocellinfo.h
branchRCL_3
changeset 55 ea98413ce11f
parent 49 10852b179f64
equal deleted inserted replaced
49:10852b179f64 55:ea98413ce11f
     1 /*
       
     2 * Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:   Data structure to hold cell information for geo tagging purposes.
       
    15 *
       
    16 */
       
    17 
       
    18 /*! \file epos_suplgeocellinfo.h
       
    19     \brief Triggering classes 
       
    20 */
       
    21 
       
    22 #ifndef __EPOS_SUPLGEOCELLINFO_H__
       
    23 #define __EPOS_SUPLGEOCELLINFO_H__
       
    24 
       
    25 // ==========================================
       
    26 
       
    27 /**
       
    28  * Cell types
       
    29  */
       
    30 enum TGeoCellType
       
    31 	{
       
    32 	/** GSM Cell. */
       
    33 	EGeoGsmCell = 0,
       
    34 	/** WCDMA cell. */
       
    35 	EGeoWcdmaCell = 1
       
    36 	};
       
    37 
       
    38 /**
       
    39  * Class defines detailed information for gsm/wcdma cell.
       
    40  *
       
    41  * @since S60 5.2
       
    42  */
       
    43 struct TGeoCellInfo
       
    44     {
       
    45     TInt iMNC;
       
    46     TInt iMCC;
       
    47     TInt iCid;
       
    48     TInt iLac;
       
    49     TBool iConnectionPrompt;
       
    50     TBool iWlanOnly;
       
    51     TGeoCellType iGeoCellType;
       
    52     };
       
    53 
       
    54 #endif //__EPOS_SUPLGEOCELLINFO_H__