| 7005 | virtual auto isFlag() const -> bool { return false; } |
| 7006 | }; |
| 7007 | struct BoundValueRefBase : BoundRef { |
| 7008 | virtual auto setValue( std::string const &arg ) -> ParserResult = 0; |
| 7009 | }; |
| 7010 | struct BoundFlagRefBase : BoundRef { |
| 7011 | virtual auto setFlag( bool flag ) -> ParserResult = 0; |
| 7012 | virtual auto isFlag() const -> bool { return true; } |
nothing calls this directly
no outgoing calls
no test coverage detected