diff --git a/include/options.hpp b/include/options.hpp index edf1ab3..729ed2b 100644 --- a/include/options.hpp +++ b/include/options.hpp @@ -115,6 +115,9 @@ namespace ztd /*CREATION FUNCTIONS*/ //! @brief Add option to the set inline void add(option opt) { option_vec.push_back(opt); } + //! @brief Variadic call of add() + template + void add(Args... args) { std::vector