locationsystemui/locationsysui/posindicator/posindhelperclientlib/inc/posgeoaddress_p.h
branchRCL_3
changeset 44 2b4ea9893b66
equal deleted inserted replaced
42:02ba3f1733c6 44:2b4ea9893b66
       
     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: Private implementation of PosGeoAddress class
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef POSGEOADDRESSPRIVATE_H
       
    19 #define POSGEOADDRESSPRIVATE_H
       
    20 
       
    21 #include "posgeoaddress.h"
       
    22 
       
    23 #include <QObject.h>
       
    24 
       
    25 /**
       
    26 * Private implementation of PosGeoAddress
       
    27 */
       
    28 class PosGeoAddressPrivate
       
    29     {
       
    30 
       
    31 public :
       
    32 
       
    33     double  mLatitude;
       
    34     double  mLongitude;
       
    35     float   mHAccuracy;
       
    36     float   mVAccuracy;
       
    37     float   mAltitude;
       
    38     
       
    39     QString  mCountry;
       
    40     QString  mState;
       
    41     QString  mDistrict;
       
    42     QString  mCity;
       
    43     QString  mZip;
       
    44     QString  mStreet;
       
    45     QString  mNumber;    
       
    46 
       
    47     PosGeoAddress* q_ptr;
       
    48 
       
    49     Q_DECLARE_PUBLIC(PosGeoAddress);
       
    50 
       
    51     };
       
    52 #endif /* POSGEOADDRESSPRIVATE_H */