Moved files to make zouba the only project.
[ptas] / zouba / src / location_p.h
diff --git a/zouba/src/location_p.h b/zouba/src/location_p.h
deleted file mode 100644 (file)
index e32b267..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-#ifndef LOCATION_P_H
-#define LOCATION_P_H
-
-#include <QObject>
-#include <QString>
-#include <QByteArray>
-
-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
-