Mercurial > hg > audiodb
view accumulator.h @ 447:b75c1e826058 api-inversion
LESS VERBOSITY
Tracing the API as currently implemented will be a little bit of a pain;
there won't be any terribly easy way to get helpful diagnostics, and our
error codes aren't very helpful. But it's clearly wrong to have a
verbosity flag lurking, so we have to zap the messages.
author | mas01cr |
---|---|
date | Wed, 24 Dec 2008 10:56:49 +0000 |
parents | a7d61291fbda |
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