Mercurial > hg > audiodb
view ReporterBase.h @ 571:d25eb017b68e
improvements to runner-rdf example
Actually return the buffer full of doubles rather than some
randomly-intiialized memory from parse_value_string.
Also, free the rdf parser as well as everything else rdf-related.
(Now almost valgrind-clean)
author | mas01cr |
---|---|
date | Fri, 03 Jul 2009 15:27:29 +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