/* * RandomNumberValidators.hpp * * Created on: May 10, 2012 * Author: heber */ #ifndef RANDOMNUMBERVALIDATORS_HPP_ #define RANDOMNUMBERVALIDATORS_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include #include "Parameters/Validators/DummyValidator.hpp" /** This validator checks whether the given string contains the name of a * present \ref RandomNumberDistribution. */ class RandomNumberDistributionNameValidator : public DummyValidator {}; /** This validator checks whether the given string contains the name of a * present \ref RandomNumberEngine. */ class RandomNumberEngineNameValidator : public DummyValidator {}; #endif /* RANDOMNUMBERVALIDATORs_HPP_ */