diff --git a/include/options.hpp b/include/options.hpp index aad170f..4a63406 100644 --- a/include/options.hpp +++ b/include/options.hpp @@ -136,12 +136,12 @@ namespace ztd @param arguments vector of string containing arguments and options @return Leftover arguments that are not options\n */ - std::vector process(std::vector arguments); + std::vector process(std::vector arguments, bool ignore_numbers=false); //! @brief Process arguments through the option set /*! calls process(std::vector arguments) */ - inline std::vector process(int argc, char** argv) { return this->process(ztd::argVector(argc, argv)); } + inline std::vector process(int argc, char** argv, bool ignore_numbers=false) { return this->process(ztd::argVector(argc, argv), ignore_numbers); } //! @brief Options in the set std::vector