| 9032 | virtual auto isFlag() const -> bool { return false; } |
| 9033 | }; |
| 9034 | struct BoundValueRefBase : BoundRef { |
| 9035 | virtual auto setValue( std::string const &arg ) -> ParserResult = 0; |
| 9036 | }; |
| 9037 | struct BoundFlagRefBase : BoundRef { |
| 9038 | virtual auto setFlag( bool flag ) -> ParserResult = 0; |
| 9039 | virtual auto isFlag() const -> bool { return true; } |
nothing calls this directly
no outgoing calls
no test coverage detected