| 48 | int parse_options (const Options_list& options, int argc, const char** argv); |
| 49 | |
| 50 | struct Option_error { |
| 51 | std::string option_name; |
| 52 | std::string message; |
| 53 | |
| 54 | Option_error (const std::string& n, const std::string& m) : option_name(n), message(m) { } |
| 55 | }; |
| 56 | |
| 57 | #endif |