Mercurial > hg > audiodb
view ReporterBase.h @ 556:4d6e2ac4de7a multiprobeLSH
INDEXING: fixed reverse-lookup roundoff error when data gets very large. Computation of offset was lacking an essential cast to off_t.
author | mas01mc |
---|---|
date | Fri, 20 Feb 2009 19:03:17 +0000 |
parents | 23c47e118bc6 |
children |
line wrap: on
line source
#ifndef __REPORTERBASE_H #define __REPORTERBASE_H class ReporterBase { public: virtual ~ReporterBase(){}; virtual void add_point(unsigned int trackID, unsigned int qpos, unsigned int spos, double dist) = 0; virtual void report(adb_t *, struct soap *, void *) = 0; }; #endif