| 74 | } |
| 75 | |
| 76 | virtual bool parse( std::ostream& output, std::ostream& error ) { |
| 77 | try |
| 78 | { |
| 79 | CallbackArgs args{ arguments, output, error }; |
| 80 | value = callback( args ); |
| 81 | return true; |
| 82 | } |
| 83 | catch ( ... ) |
| 84 | { |
| 85 | return false; |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | virtual std::string print_value() const { |
| 90 | return ""; |
nothing calls this directly
no outgoing calls
no test coverage detected