Mercurial > hg > audiodb
view accumulator.h @ 507:e7fd50483311
Free bits of the datum constructed in audioDB::query.
We're not quite safe: error calls between allocation of some of these
bits and pieces and their use will cause failure... but not freeing
things here is definitely wrong.
author | mas01cr |
---|---|
date | Tue, 13 Jan 2009 21:37:10 +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