mds_plat/location_manager_api/inc/locationdatatype.h
changeset 60 79f826a55db2
equal deleted inserted replaced
58:fe894bb075c2 60:79f826a55db2
       
     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 const TInt KMaxCountryName = 128;
       
    24 typedef TBuf<KMaxCountryName> TCountryName;
       
    25 /*
       
    26  * TLocationData encapsulates all location data.
       
    27  */
       
    28 struct TLocationData
       
    29     {
       
    30     TPosition iPosition;
       
    31     CTelephony::TNetworkInfoV1 iNetworkInfo;
       
    32     TCourse iCourse;
       
    33     TCountryName iCountry;
       
    34     TUint iSatellites;
       
    35     TReal32 iQuality;
       
    36     };
       
    37 	    
       
    38 #endif /*LOCATIONDATATYPE_H_*/
       
    39