Mercurial > hg > audiodb
view ReporterBase.h @ 527:7ee6a2701d90 multiprobeLSH
Added more debugging information: report numPairs returned from LSH bucket retrieval (pre-distance computation), entry/exit from audiodb_query_spec_qpointers(...)
author | mas01mc |
---|---|
date | Wed, 28 Jan 2009 18:55:46 +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