smf/inc/common/smfplace/smfplace.h
changeset 7 be09cf1f39dd
parent 6 c39a6cfd1fb9
child 8 4102c67b6e56
--- a/smf/inc/common/smfplace/smfplace.h	Tue May 18 17:33:55 2010 +0530
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,216 +0,0 @@
-/**
- * Copyright (c) 2010 Sasken Communication Technologies Ltd.
- * All rights reserved.
- * This component and the accompanying materials are made available
- * under the terms of the "Eclipse Public License v1.0" 
- * which accompanies  this distribution, and is available
- * at the URL "http://www.eclipse.org/legal/epl-v10.html"
- *
- * Initial Contributors:
- * Chandradeep Gandhi, Sasken Communication Technologies Ltd - Initial contribution
- *
- * Contributors:
- * Manasij Roy, Nalina Hariharan
- * 
- * Description:
- * The SmfPlace class represents a place and its related information
- * Note: This class has dependencies on QtMobility project
- *
- */
-
-#ifndef SMFPLACE_H_
-#define SMFPLACE_H_
-
-#include <QUrl>
-#include <qgeopositioninfo.h> // Qt mobility class
-#include <qdatastream.h>
-#include <QSharedData>
-#include <smfclientglobal.h>
-#include <QMetaType>
-
-// Qt mobility - namespace
-using namespace QtMobility;
-
-typedef enum 
-{
-	SearchByStreet = 0x00,
-	SearchByLocality,
-	SearchByPostOffice,
-	SearchByTown,
-	SearchByRegion,
-	SearchByState,
-	SearchByCountry
-}SmfLocationSearchBoundary;
-
-class SmfPlacePrivate;
-
-/**
- * @ingroup smf_common_group
- * The SmfPlace class represents a place and its related information.
- * 
- * Note: This class has dependencies on QtMobility project
- */
-class SMFCLIENT_EXPORT SmfPlace
-	{
-public:
-	/**
-	 * Constructor with default argument
-	 */
-	SmfPlace( );
-	
-	/**
-	 * Copy Constructor
-	 * @param aOther The reference object
-	 */
-	SmfPlace( const SmfPlace &aOther );
-	
-	/**
-	 * Overloaded = operator 
-	 * @param aOther The reference object
-	 * @return The current object reference
-	 */
-	SmfPlace& operator=( const SmfPlace &aOther );
-	
-	/**
-	 * Destructor
-	 */
-	~SmfPlace( );
-	
-	/**
-	 * Method to get the place name
-	 * @return The place name
-	 */
-	QString name( ) const;
-	
-	/**
-	 * Method to get the city of place
-	 * @return The city of the place
-	 */
-	QString city( ) const;
-	
-	/**
-	 * Method to get the street information of place
-	 * @return The street information of the place
-	 */
-	QString street( ) const;
-	
-	/**
-	 * Method to get the zip code of place
-	 * @return The zip code of place
-	 */
-	QString zipCode( ) const;
-	
-	/**
-	 * Method to get the country of place
-	 * @return The country of place
-	 */
-	QString country( ) const;
-	
-	/**
-	 * Method to get the Geo Position information (like information gathered 
-	 * on a global position, direction and velocity at a particular point 
-	 * in time) of the place.
-	 * @return The Geo Position information of place
-	 */
-	QGeoPositionInfo geoPositionInfo( ) const;
-	
-	/**
-	 * Method to get the url indicating the place
-	 * @return The url indicating the place
-	 */
-	QUrl url( ) const;
-	
-	/**
-	 * Method to get the id of the place
-	 * @return The ID value 
-	 */
-	QString id( ) const;
-	
-	/**
-	 * Method to set the place name
-	 * @param aPlace The new place name
-	 */
-	void setName( const QString& aPlace );
-	
-	/**
-	 * Method to set the city of  place
-	 * @param aCity The new city of the place
-	 */
-	void setCity( const QString& aCity );
-	
-	/**
-	 * Method to set the street information of place
-	 * @param aStreet The new street information of the place
-	 */
-	void setStreet( const QString& aStreet );
-	
-	/**
-	 * Method to set the zip code of place
-	 * @param aZipCode The new zip code of place
-	 */
-	void setZipCode( const QString& aZipCode );
-	
-	/**
-	 * Method to set the country of place
-	 * @param aCountry The new country of place
-	 */
-	void setCountry( const QString& aCountry );
-	
-	/**
-	 * Method to set the Geo Postion information (like information gathered 
-	 * on a global position, direction and velocity at a particular point 
-	 * in time) of the place.
-	 * @param aGeoPosInfo The new Geo Position information of place
-	 */
-	void setGeoPositionInfo( const QGeoPositionInfo &aGeoPosInfo );
-	
-	/**
-	 * Method to set the url indicating the place
-	 * @param aUrl The new url indicating the place
-	 */
-	void setUrl( const QUrl& aUrl );
-	
-	/**
-	 * Method to set the id of the place
-	 * @return The ID value 
-	 */
-	void setId( const QString &aId );
-	
-private:
-	QSharedDataPointer<SmfPlacePrivate> d;
-	
-	friend QDataStream &operator<<( QDataStream &aDataStream, 
-			const SmfPlace &aPlace );
-
-	friend QDataStream &operator>>( QDataStream &aDataStream, 
-			SmfPlace &aPlace );
-	
-	};
-
-
-/**
- * Method for Externalization. Writes the SmfPlace object to 
- * the stream and returns a reference to the stream.
- * @param aDataStream Stream to be written
- * @param aPlace The SmfPlace object to be externalized
- * @return reference to the written stream
- */
-QDataStream &operator<<( QDataStream &aDataStream, 
-		const SmfPlace &aPlace );
-
-/**
- * Method for Internalization. Reads a SmfPlace object from 
- * the stream and returns a reference to the stream.
- * @param aDataStream Stream to be read
- * @param aPlace The SmfPlace object to be internalized
- * @return reference to the stream
- */
-QDataStream &operator>>( QDataStream &aDataStream, 
-		SmfPlace &aPlace);
-
-
-// Make the class SmfPlace known to QMetaType, so that as to register it.
-Q_DECLARE_METATYPE(SmfPlace)
-
-
-#endif /* SMFPLACE_H_ */