Mercurial > hg > audiodb
view accumulator.h @ 510:2b95e396f4d7
Add missing pointpair.h file.
It's good to know that even with the most advanced RCS I've every used,
this error still happens to me.
author | mas01cr |
---|---|
date | Thu, 15 Jan 2009 14:23:09 +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