comparison 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
comparison
equal deleted inserted replaced
509:cc2b97d020b1 510:2b95e396f4d7
1 // should probably be rewritten
2 class PointPair {
3 public:
4 uint32_t trackID;
5 uint32_t qpos;
6 uint32_t spos;
7 PointPair(uint32_t a, uint32_t b, uint32_t c);
8 };
9
10 bool operator<(const PointPair& a, const PointPair& b);