Mercurial > hg > audiodb
view accumulator.h @ 716:26a19beb7e3d
the low level bindings now include a direct data insertion method (with a numpy array).
Should compile, but new functionality not really tested.
Exercise caution.
author | map01bf |
---|---|
date | Wed, 23 Jun 2010 10:12:24 +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