view ReporterBase.h @ 380:7d6dd067d12e

Support --DUMP on databases with O2_FLAG_LARGE_ADB. (This was harder than I expected; it only works given a change in the insertion policy for LARGE_ADB -- any relative pathnames must be resolved to absolute ones at insert time, otherwise all bets are off.) [ In other news, reviewing the various bits of LARGE_ADB code does not fill me with happy happy joy joy feelings: expect refactorings at the drop of a hat. ]
author mas01cr
date Fri, 21 Nov 2008 12:23:08 +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