/* * BoxLengthValidator.hpp * * Created on: May 9, 2012 * Author: heber */ #ifndef BOXLENGTHVALIDATOR_HPP_ #define BOXLENGTHVALIDATOR_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "Parameters/Validators/Validator.hpp" /** This validator checks whether the given double is not larger than any * of the current Box' axis lengths. */ class BoxLengthValidator : public Validator< double > { bool isValid(const double & _value) const; bool operator==(const Validator &_instance) const; Validator< double >* clone() const;; }; #endif /* BOXLENGTHVALIDATOR_HPP_ */