X-Git-Url: https://vcs.maemo.org/git/?a=blobdiff_plain;f=zouba%2Fsrc%2Flocation_p.h;fp=zouba%2Fsrc%2Flocation_p.h;h=0000000000000000000000000000000000000000;hb=15842000c65c6c7529d0fe35e13253adb4293afd;hp=e32b2676d3056674505b99f31c49f1f48bd11a77;hpb=5789808b3e0c9a6a1d779270ecfbf0854f4d1b1e;p=ptas diff --git a/zouba/src/location_p.h b/zouba/src/location_p.h deleted file mode 100644 index e32b267..0000000 --- a/zouba/src/location_p.h +++ /dev/null @@ -1,44 +0,0 @@ -#ifndef LOCATION_P_H -#define LOCATION_P_H - -#include -#include -#include - -class LocationPrivate : public QObject -{ - Q_OBJECT - -public: - LocationPrivate( const QString &x, const QString &y, const QString &label ); - LocationPrivate( const QString &label ); - virtual ~LocationPrivate(); - - void setX( uint x ); - void setX( const QString &x ); - QString x() const; - - void setY( uint y ); - void setY( const QString &y ); - QString y() const; - - void setAddress( const QString &address ); - QString address() const; - - void setLabel( const QString &label ); - QString label() const; - - void setValid( bool valid ); - bool isValid() const; - - void parseReply( const QByteArray &reply ); - - QString m_label; - QString m_address; - QString m_x; - QString m_y; - bool m_valid; -}; - -#endif // LOCATION_P_H -