/* * CommandLineParser_validate.hpp * * Created on: Nov 8, 2010 * Author: heber */ #ifndef COMMANDLINEPARSER_VALIDATE_HPP_ #define COMMANDLINEPARSER_VALIDATE_HPP_ #include #include #include #include #include class BoxValue; class VectorValue; void validate(boost::any& v, const std::vector& values, VectorValue *, int); void validate(boost::any& v, const std::vector& values, BoxValue *, int); void validate(boost::any& v, const std::vector& values, boost::filesystem::path *, int); #endif /* COMMANDLINEPARSER_VALIDATE_HPP_ */