| 7000 | }; |
| 7001 | |
| 7002 | struct BoundRef : NonCopyable { |
| 7003 | virtual ~BoundRef() = default; |
| 7004 | virtual auto isContainer() const -> bool { return false; } |
| 7005 | virtual auto isFlag() const -> bool { return false; } |
| 7006 | }; |
| 7007 | struct BoundValueRefBase : BoundRef { |
| 7008 | virtual auto setValue( std::string const &arg ) -> ParserResult = 0; |
| 7009 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected