/* * RotationAngleValidator.hpp * * Created on: May 10, 2012 * Author: heber */ #ifndef ROTATIONANGLEVALIDATOR_HPP_ #define ROTATIONANGLEVALIDATOR_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "Parameters/Validators/RangeValidator.hpp" /** This validator checks whether the given double contains a valid * angle in the interval [0,360). */ class RotationAngleValidator : public RangeValidator { public: RotationAngleValidator() : RangeValidator(-360., 360.) {}; }; #endif /* ROTATIONANGLEVALIDATOR_HPP_ */