/* * ParserFileValidator.hpp * * Created on: May 9, 2012 * Author: heber */ #ifndef PARSERFILEVALIDATOR_HPP_ #define PARSERFILEVALIDATOR_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include #include "Parameters/Validators/DummyValidator.hpp" /** This validator checks whether the file via the given path has the suffix * of a valid \ref FormatParser type. */ class ParserFileValidator : public DummyValidator< boost::filesystem::path > {}; #endif /* PARSERFILEVALIDATOR_HPP_ */