19 bool cmdline_has_arg(
const std::vector<std::string> & cmdline,
const std::string & arg);
44 std::string
cmdline_get_arg_str(std::vector<std::string> & cmdline,
const std::string & arg);
61 std::string
cmdline_get_arg_str(std::vector<std::string> & cmdline,
const std::string & arg,
const std::string & def);
77 long cmdline_get_arg_long(std::vector<std::string> & cmdline,
const std::string & arg,
long def);
bool cmdline_has_arg(const std::vector< std::string > &cmdline, const std::string &arg)
Check to see if the given command line has an argument.
Definition: cmdline.cpp:13
std::string cmdline_get_arg_str(std::vector< std::string > &cmdline, const std::string &arg)
Obtain the value of an argument from the command line as a string.
Definition: cmdline.cpp:35
bool cmdline_get_switch(std::vector< std::string > &cmdline, const std::string &arg)
See if the command line has a switch.
Definition: cmdline.cpp:21
std::vector< std::string > convert_cmdline(int argc, char **argv)
Convert the command line passed to a program into a vector of strings.
Definition: cmdline.cpp:111
long cmdline_get_arg_long(std::vector< std::string > &cmdline, const std::string &arg)
Obtain the value of an argument from the command line as a long integer.
Definition: cmdline.cpp:83