/* * FormulaValidator.hpp * * Created on: May 9, 2012 * Author: heber */ #ifndef FORMULAVALIDATOR_HPP_ #define FORMULAVALIDATOR_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include #include "Parameters/Validators/DummyValidator.hpp" /** This validator checks whether the given string contains a valid chemical * formula. */ class FormulaValidator : public DummyValidator< std::string > {}; #endif /* FORMULAVALIDATOR_HPP_ */