Mercurial > hg > audiodb
view accumulator.h @ 595:31a1556fc2d6
Make dump.cpp not use mmap()
A couple more "handy" portability macros in audioDB-internals.h means
the balance of this work adds lines of code; clearly suboptimal.
author | mas01cr |
---|---|
date | Tue, 11 Aug 2009 21:42:44 +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