mds_plat/location_manager_api/inc/locationdatatype.h
changeset 0 c53acadfccc6
child 3 b73a2e62868f
equal deleted inserted replaced
-1:000000000000 0:c53acadfccc6
       
     1 /*
       
     2 * Copyright (c) 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:
       
    15 *
       
    16 */
       
    17 #ifndef LOCATIONDATATYPE_H_
       
    18 #define LOCATIONDATATYPE_H_
       
    19 
       
    20 #include <LbsPosition.h>
       
    21 #include <etel3rdparty.h>
       
    22 
       
    23 /*
       
    24  * TLocationData encapsulates all location data.
       
    25  */
       
    26 struct TLocationData
       
    27     {
       
    28     TPosition iPosition;
       
    29     CTelephony::TNetworkInfoV1 iNetworkInfo;
       
    30     TCourse iCourse;
       
    31     TBuf<100> iCountry;
       
    32     TUint iSatellites;
       
    33     TReal32 iQuality;
       
    34     };
       
    35 	    
       
    36 #endif /*LOCATIONDATATYPE_H_*/
       
    37