You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef CMD_LINE_ARGS_H |
|
#define CMD_LINE_ARGS_H |
|
#include <string> |
|
|
|
struct parsed_opts { |
|
std::string config_file; |
|
}; |
|
|
|
parsed_opts parse_opts(int argc, char** argv); |
|
#endif // CMD_LINE_ARGS_H
|
|
|