Mercurial > hg > audiodb
view ReporterBase.h @ 503:3d17fdac096a
Makefile improvements from library/application separation.
Library object files don't need soap includes, and depend on a different
set of header files from the application object files.
Run the library tests with "make test"
author | mas01cr |
---|---|
date | Tue, 13 Jan 2009 21:26:21 +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