view accumulator.h @ 665:50761b56e8be

Make python tests actually pass on my machine. Needs an extra NULL to stop the python runtime whining about a mismatch between keyword args and values.
author mas01cr
date Tue, 02 Feb 2010 22:22:49 +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