Mercurial > hg > audiodb
view accumulator.h @ 599:c6debbac3216
End-to-end functioning SPARQL with audioDB storage module
* AudioDB RDF storage module now works correctly with dimension and vectors
* Apache module now returns a sparql version of the query results.
* (including cleanup close/free calls).
author | mas01mj |
---|---|
date | Thu, 13 Aug 2009 11:20:56 +0000 |
parents | 342822c2d49a |
children |
line wrap: on
line source
#ifndef ACCUMULATOR_H #define ACCUMULATOR_H class Accumulator { public: virtual ~Accumulator() {}; virtual void add_point(adb_result_t *r) = 0; virtual adb_query_results_t *get_points() = 0; }; #endif