smf/inc/common/smfplace/smfplace_p.h
changeset 7 be09cf1f39dd
parent 6 c39a6cfd1fb9
child 8 4102c67b6e56
equal deleted inserted replaced
6:c39a6cfd1fb9 7:be09cf1f39dd
     1 /**
       
     2  * Copyright (c) 2010 Sasken Communication Technologies Ltd.
       
     3  * All rights reserved.
       
     4  * This component and the accompanying materials are made available
       
     5  * under the terms of the "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  * Chandradeep Gandhi, Sasken Communication Technologies Ltd - Initial contribution
       
    11  *
       
    12  * Contributors:
       
    13  * Manasij Roy, Nalina Hariharan
       
    14  * 
       
    15  * Description:
       
    16  * Private class implemented for implicit sharing of SmfPlace class
       
    17  *
       
    18  */
       
    19 
       
    20 #ifndef SMFPLACE_P_H_
       
    21 #define SMFPLACE_P_H_
       
    22 
       
    23 #include <QUrl>
       
    24 #include <qgeopositioninfo.h> // Qt mobility class
       
    25 #include <QSharedData>
       
    26 
       
    27 using namespace QtMobility; // Qt mobility - namespace
       
    28 
       
    29 class SmfPlacePrivate : public QSharedData
       
    30 {
       
    31 public:
       
    32 	/**
       
    33 	 * Constructor
       
    34 	 */
       
    35 	SmfPlacePrivate( );
       
    36 	/**
       
    37 	 * Copy Consturctor
       
    38 	 * @param aOther The reference object to be copy constructed
       
    39 	 */
       
    40 	SmfPlacePrivate( const SmfPlacePrivate &aOther ) ;
       
    41 	
       
    42 	/**
       
    43 	 * Destructor
       
    44 	 */
       
    45 	~SmfPlacePrivate( );
       
    46   
       
    47 	QString m_name;						// place name
       
    48 	QString m_city;						// city of place
       
    49 	QString m_street;					// street of place
       
    50 	QString m_zipcode;					// zip code of place
       
    51 	QString m_country;					// country of place
       
    52 	QtMobility::QGeoPositionInfo m_geo;	// place geo position information
       
    53 	QUrl m_url;							// url indicating the place
       
    54 	QString m_placeId;					// place id
       
    55 	
       
    56 };
       
    57 
       
    58 #endif /* SMFPLACE_P_H_ */