view ReporterBase.h @ 716:26a19beb7e3d

the low level bindings now include a direct data insertion method (with a numpy array). Should compile, but new functionality not really tested. Exercise caution.
author map01bf
date Wed, 23 Jun 2010 10:12:24 +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