Added KKJ coordinate class
[ptas] / src / kkj.cpp
diff --git a/src/kkj.cpp b/src/kkj.cpp
new file mode 100644 (file)
index 0000000..d60da50
--- /dev/null
@@ -0,0 +1,21 @@
+#include "kkj.h"
+
+KKJ::KKJ(unsigned int northing, unsigned int easting) :
+        mNorthing(northing),
+        mEasting(easting)
+{
+}
+
+KKJ::~KKJ()
+{
+}
+
+unsigned int KKJ::northing() const
+{
+    return mNorthing;
+}
+
+unsigned int KKJ::easting() const
+{
+    return mEasting;
+}