#ifndef HITERATOR_H
#define HITERATOR_H

#include "TObject.h"
#include "TIterator.h"

class HLocation;

class HIterator : public TIterator {
protected:
  HIterator(void) {}
public:
  ~HIterator(void);
  virtual Bool_t gotoLocation(HLocation &aLoc)=0;
  virtual HLocation &getLocation(void)=0;
  ClassDef(HIterator,1) //Base iterator for categories
};

#endif /* !HITERATOR_H */

Last change: Sat May 22 12:58:11 2010
Last generated: 2010-05-22 12:58

This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.