Mercurial > hg > audiodb
changeset 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 | cc2b97d020b1 |
children | 3141e51cb077 |
files | pointpair.h |
diffstat | 1 files changed, 10 insertions(+), 0 deletions(-) [+] |
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);