annotate pointpair.cpp @ 589:9119f2fa3efe

Header file rearrangement Make it so that lshlib.h is slightly more like a header file to include to use the LSH ("class G") class, and slightly less a header file for developing that class, by removing all the #includes and moving them to the one-file lshlib.cpp instead. Make audioDB-internals.h slightly more of a project header file, by including there all the headers we actually need. Remove some assert()s (which do nothing) and some Uns32Ts (-> uint32_t)
author mas01cr
date Tue, 11 Aug 2009 21:42:13 +0000
parents cc2b97d020b1
children
rev   line source
mas01cr@498 1 extern "C" {
mas01cr@498 2 #include "audioDB_API.h"
mas01cr@509 3 }
mas01cr@498 4 #include "audioDB-internals.h"
mas01cr@498 5
mas01cr@589 6 PointPair::PointPair(uint32_t a, uint32_t b, uint32_t c) :
mas01cr@498 7 trackID(a), qpos(b), spos(c) {
mas01cr@498 8 };
mas01cr@498 9
mas01cr@498 10 bool operator<(const PointPair& a, const PointPair& b) {
mas01cr@498 11 return ((a.trackID < b.trackID) ||
mas01cr@498 12 ((a.trackID == b.trackID) &&
mas01cr@498 13 ((a.spos < b.spos) || ((a.spos == b.spos) && (a.qpos < b.qpos)))));
mas01cr@498 14 }
mas01cr@498 15
mas01cr@498 16 bool operator>(const PointPair& a, const PointPair& b) {
mas01cr@498 17 return ((a.trackID > b.trackID) ||
mas01cr@498 18 ((a.trackID == b.trackID) &&
mas01cr@498 19 ((a.spos > b.spos) || ((a.spos == b.spos) && (a.qpos > b.qpos)))));
mas01cr@498 20 }
mas01cr@498 21
mas01cr@498 22 bool operator==(const PointPair& a, const PointPair& b) {
mas01cr@498 23 return ((a.trackID == b.trackID) &&
mas01cr@498 24 (a.qpos == b.qpos) &&
mas01cr@498 25 (a.spos == b.spos));
mas01cr@498 26 }