view ReporterBase.h @ 599:c6debbac3216

End-to-end functioning SPARQL with audioDB storage module * AudioDB RDF storage module now works correctly with dimension and vectors * Apache module now returns a sparql version of the query results. * (including cleanup close/free calls).
author mas01mj
date Thu, 13 Aug 2009 11:20:56 +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