diff pointpair.h @ 510:2b95e396f4d7

Add missing pointpair.h file. It's good to know that even with the most advanced RCS I've every used, this error still happens to me.
author mas01cr
date Thu, 15 Jan 2009 14:23:09 +0000
parents
children aa715b3e18db
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pointpair.h	Thu Jan 15 14:23:09 2009 +0000
@@ -0,0 +1,10 @@
+// should probably be rewritten
+class PointPair {
+ public:
+  uint32_t trackID;
+  uint32_t qpos;
+  uint32_t spos;
+  PointPair(uint32_t a, uint32_t b, uint32_t c);
+};
+
+bool operator<(const PointPair& a, const PointPair& b);