view ReporterBase.h @ 664:e33a6342ddea

Basic Makefile for python bindings Not sure if it actually works. Building seems to go OK; "make test" is less happy.
author mas01cr
date Tue, 02 Feb 2010 22:22:42 +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