view accumulator.h @ 550:d5ada9532a40

Implement error exits in the SOAP client when the return code is not SOAP_OK. Corresponding fixes in the test suite, while we're at it.
author mas01cr
date Thu, 12 Feb 2009 10:44:54 +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