Mercurial > hg > audiodb
view accumulator.h @ 679:047415d1805e
Make the python bindings compile again using the new hopsize stuff
It's not an ideal fix; it ties together the query and instance hops.
Nevertheless, building is better than not building.
author | mas01cr |
---|---|
date | Fri, 05 Mar 2010 16:01:22 +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