Mercurial > hg > audiodb
view ReporterBase.h @ 374:6f2b31d9c186
The Makefile has been altered so that when running it on a darwin system
(i.e. Mac OS X) it will produce a dylib instead of an so with what I
believe are the correct conventions for such things. Note that the test suite does
not yet function with this dylib file.
author | map01bf |
---|---|
date | Fri, 14 Nov 2008 14:10:49 +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