Mercurial > hg > audiodb
view ReporterBase.h @ 440:91addb6ce4c4 api-inversion
We plan to make audiodb_insert_datum() an API function
That means that we had better not claim success, or more probably fail
dramatically, when calling it on a database which happens to have the
LARGE_ADB attribute.
author | mas01cr |
---|---|
date | Wed, 24 Dec 2008 10:56:22 +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