view ReporterBase.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 23c47e118bc6
children
line wrap: on
line source

#ifndef __REPORTERBASE_H
#define __REPORTERBASE_H

class ReporterBase {
public:
  virtual ~ReporterBase(){};
  virtual void add_point(unsigned int trackID, unsigned int qpos, unsigned int spos, double dist) = 0;
  virtual void report(adb_t *, struct soap *, void *) = 0;
};

#endif