/* * GenericValidators.hpp * * Created on: May 10, 2012 * Author: heber */ #ifndef GENERICVALIDATORS_HPP_ #define GENERICVALIDATORS_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "Parameters/Validators/DummyValidator.hpp" /** This validator checks whether the given value is positive. */ template class PositiveValidator : public DummyValidator {}; /** This validator checks whether the given value is not zero. */ template class NotZeroValidator : public DummyValidator {}; /** This validator checks whether the given value is non-negative. */ template class NonNegativeValidator : public DummyValidator {}; #endif /* GENERICVALIDATORS_HPP_ */