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 app_options { |
|
std::string config_file; |
|
int initial_pin_state; |
|
}; |
|
|
|
app_options parse_opts(int argc, char** argv); |
|
#endif // CMD_LINE_ARGS_H
|
|
|