view ReporterBase.h @ 644:404222029e27

Grab bag of populate.c improvements no need for fileUri (and in fact it was wrong for files with %s in them); use librdf_new_uri_from_filename. Use the basename of the audio filename as the key, just for my own sanity. People who want file://///// everywhere can write their own populate.c.
author mas01cr
date Tue, 13 Oct 2009 14:26:26 +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