Mercurial > hg > audiodb
view ReporterBase.h @ 470:c26c5b7ef0d2 api-inversion
Implement libtests/0037 using audiodb_query_spec()
It's a bit wordy; there's also the struct / pointer issue in
audiodb_query_spec_t to think through. But it does work.
author | mas01cr |
---|---|
date | Wed, 31 Dec 2008 16:52:34 +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