Mercurial > hg > audiodb
view ReporterBase.h @ 425:d65410f4bb85 api-inversion
Begin pushing information through.
Create and initialize an adb_query_refine_t struct in audioDB::query,
and pass it through to various callees, which can then use it instead of
the automagic class member variables.
This allows conversion of some routines into ordinary static C
functions. Begin doing so.
author | mas01cr |
---|---|
date | Wed, 24 Dec 2008 10:55:16 +0000 |
parents | d9a88cfd4ab6 |
children | d3afc91d205d |
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(char*,void*) = 0; }; #endif