#ifndef HLINEPARSER_H
#define HLINEPARSER_H

#include "TObject.h"
#include "TObjArray.h"
#include "TArrayI.h"

class HLineParser : public TObject {
private:
  TObjArray fStrings;
  TArrayI fVars;
public:
  HLineParser(void);
  ~HLineParser(void);
  Bool_t parse(Text_t *line);
  Bool_t eval(TArrayI *vals,Text_t *string);
  ClassDef(HLineParser,1) //Utility parser
};

#endif /* !HLINEPARSER_H */

Last change: Sat May 22 12:58:56 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.