view pointpair.h @ 625:448b28a598e3

added the first pass of the native python access class, open, close and insert supported, query still to come. Also, on account of a definite memory leak (yet to be sorted out) when using the modulw in the interpreter, sometimes exit() will segfault...
author map01bf
date Tue, 22 Sep 2009 12:35:24 +0000
parents 2b95e396f4d7
children aa715b3e18db
line wrap: on
line source
// 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);