/* * TimeStepPresentValidator.hpp * * Created on: May 10, 2012 * Author: heber */ #ifndef TIMESTEPPRESENTVALIDATOR_HPP_ #define TIMESTEPPRESENTVALIDATOR_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "Parameters/Validators/Validator.hpp" /** This validator checks whether the given time step is present in the World. * */ class TimeStepPresentValidator : public Validator { bool isValid(const unsigned int & _value) const; bool operator==(const Validator &_instance) const; Validator< unsigned int >* clone() const; }; #endif /* TIMESTEPPRESENTVALIDATOR_HPP_ */