Mercurial > hg > audiodb
view ReporterBase.h @ 488:f4dc8e47ee37 api-inversion
Remove dump_query() function.
It seems to have been used for printf debugging of test files and never
removed. (Debuggers aren't great, but they are better than
hand-maintained printing routines for this kind of thing; in particular,
gdb will do this for you rather better than dump_query() did.)
author | mas01cr |
---|---|
date | Sat, 10 Jan 2009 15:32:49 +0000 |
parents | d3afc91d205d |
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