view ReporterBase.h @ 717:159becb0701e

the access level wrapper now exposes the python native data insert. there's a nasty segfault to track though...
author map01bf
date Wed, 23 Jun 2010 17:52:30 +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