-------------------------------------------------------------------------
| 376 | |
| 377 | //------------------------------------------------------------------------- |
| 378 | void OptionsParser::ShowExplanation(std::wostream* emptyOptionsExplanation, |
| 379 | const char* message) const |
| 380 | { |
| 381 | if (emptyOptionsExplanation) |
| 382 | { |
| 383 | *emptyOptionsExplanation << message << std::endl; |
| 384 | *emptyOptionsExplanation << *programOptions_ << std::endl; |
| 385 | } |
| 386 | } |
| 387 | |
| 388 | //------------------------------------------------------------------------- |
| 389 | boost::optional<Options> OptionsParser::Parse(int argc, |
nothing calls this directly
no outgoing calls
no test coverage detected