/* * BoxVectorValidator.hpp * * Created on: May 10, 2012 * Author: heber */ #ifndef BOXVECTORVALIDATOR_HPP_ #define BOXVECTORVALIDATOR_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "LinearAlgebra/Vector.hpp" #include "Parameters/Validators/DummyValidator.hpp" /** This validator checks whether the given Vector is within the current * simulation domain, i.e. the Box. */ class BoxVectorValidator : public DummyValidator< Vector > {}; #endif /* BOXVECTORVALIDATOR_HPP_ */