view accumulator.h @ 491:29d28cfe0222 api-inversion

More removal of audiodb_query() There's still a certain amount of code duplication between these test files (for example, almost all of 0011/ and 0012/ are exactly the same), but it's all improvement.
author mas01cr
date Sat, 10 Jan 2009 15:33:02 +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