Skip to content
Snippets Groups Projects
SetupParser.hh 180 B
Newer Older
Matthias Steinke's avatar
Matthias Steinke committed
#ifndef SETUPPARSER_HH
#define SETUPPARSER_HH

#include <string>

class SetupParser
{
public:

  SetupParser();
  ~SetupParser();

  bool parse(std::string& fileName);

};

#endif