Mercurial > hg > audiodb
view ReporterBase.h @ 499:f2e2d1ffcc4e malcolm-large-tracks
Changed LSH_N_POINTS_BIT header field to a width of 5 bits
author | mas01mc |
---|---|
date | Sat, 10 Jan 2009 19:01:01 +0000 |
parents | 342822c2d49a |
children | 23c47e118bc6 |
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 *,void *) = 0; }; #endif