view ReporterBase.h @ 413:9de6d0676907 api-inversion

Add a partial libtests/ implementation of tests/0037. Partial because still no "nsequence", though I have a plan for that. The audiodb_batchinsert is a little bit weird; I think I'd have used an adb_insert_t*[] (array of pointers) rather than an array of structures directly. I might think about that some more later.
author mas01cr
date Fri, 12 Dec 2008 15:37:17 +0000
parents d9a88cfd4ab6
children d3afc91d205d
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(char*,void*) = 0;
};

#endif