Added icon.
[ptas] / zouba.sb1 / locations.h
diff --git a/zouba.sb1/locations.h b/zouba.sb1/locations.h
deleted file mode 100644 (file)
index 40f8be0..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-#ifndef LOCATIONS_H
-#define LOCATIONS_H
-
-#include "location.h"
-
-#include <QHash>
-#include <QString>
-#include <QObject>
-
-class Locations: public QObject
-{
-  Q_OBJECT
-
-public:
-  Locations();
-  ~Locations();
-
-  static Locations *instance();
-  bool addLocation( Location *location );
-
-  Location *location( const QString &label );
-
-public Q_SLOTS:
-  void saveLocation();
-
-private:
-  void restoreLocations();
-  static QHash<QString,Location *> locationHash;
-  static Locations singleton;
-
-  void saveLocation( Location *location );
-};
-#endif // LOCATIONS_H