view accumulator.h @ 654:828c1c4e25cc

(probably) restore buildability on Cygwin Only probably because I don't have easy direct access to a Cygwin build environment yet; sadly, it doesn't install under Wine. I have inspected the output of gcc -dM -E foo.h for different compiler/OS combinations, though, and this should now be right.
author mas01cr
date Thu, 22 Oct 2009 12:51:04 +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