Mercurial > hg > audiodb
view ReporterBase.h @ 651:5b2c0d9bc63d
Broken implementation of mkstemp() for WIN32 (no-cygwin)
Since the only user is the SOAP server, and since I would strongly like
to see the SOAP server either removed completely or else written to call
the API rather than a fake-command-line-emulation, I'm not too worried
about the brokenness. YMMV.
author | mas01cr |
---|---|
date | Wed, 14 Oct 2009 12:12:39 +0000 |
parents | 23c47e118bc6 |
children |
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 *, struct soap *, void *) = 0; }; #endif