view ReporterBase.h @ 543:6afeb2c76957 multiprobeLSH

Fixed non-NULL memory initializaton error. We require NULL fields for correct free() behaviour.
author mas01mc
date Sun, 08 Feb 2009 05:06:01 +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