# HG changeset patch # User mas01cr # Date 1232029389 0 # Node ID 2b95e396f4d78e91d4c0e6a7c13541084867aca2 # Parent cc2b97d020b1c12729c1fb584342c648c0b06033 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. diff -r cc2b97d020b1 -r 2b95e396f4d7 pointpair.h --- /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);