Moved files to make zouba the only project.
[ptas] / src / kkjgridcoordinate_p.h
diff --git a/src/kkjgridcoordinate_p.h b/src/kkjgridcoordinate_p.h
deleted file mode 100644 (file)
index bc09530..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-#ifndef KKJGRIDCOORDINATE_P_H
-#define KKJGRIDCOORDINATE_P_H
-
-#include <QtGlobal>
-
-class KKJGridCoordinate;
-
-/**
- * A private member class for class KKJGridCoordinate.
- */
-class KKJGridCoordinatePrivate
-{
-public:
-    /**
-     * Destructor.
-     */
-    virtual ~KKJGridCoordinatePrivate();
-
-private:
-    /**
-     * Initializes the private class.
-     * @param northing the northing of the coordinate.
-     * @param easting the easting of the coordinate.
-     */
-    void init(unsigned int northing, unsigned int easting);
-
-    /// The northing of the coordinate.
-    unsigned int northing;
-
-    /// The easting of the coordinate.
-    unsigned int easting;
-
-    /// The concrete class owning this private implementation member.
-    KKJGridCoordinate *q_ptr;
-
-    Q_DECLARE_PUBLIC(KKJGridCoordinate)
-
-};
-
-#endif // KKJGRIDCOORDINATE_P_H