1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
#ifndef ARGS_HH #define ARGS_HH #include <string> #include <vector> namespace stuff { class Args { public: static bool parse(const std::string& input, std::vector<std::string>* output, bool nice = true); private: Args() = delete; ~Args() = delete; }; } // namespace stuff #endif /* ARGS_HH */