view ReporterBase.h @ 572:e6dab5ed471c

Decorate audioDB::error with the noreturn attribute (This might smoke out the non-g++ users)
author mas01cr
date Mon, 06 Jul 2009 11:52:21 +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