| 4122 | struct BoundBinaryFunction : IArgFunction<C>{ |
| 4123 | BoundBinaryFunction( void (*_function)( C&, T ) ) : function( _function ) {} |
| 4124 | virtual void set( C& obj, std::string const& stringValue ) const { |
| 4125 | typename RemoveConstRef<T>::type value; |
| 4126 | convertInto( stringValue, value ); |
| 4127 | function( obj, value ); |
| 4128 | } |
| 4129 | virtual void setFlag( C& obj ) const { |
| 4130 | typename RemoveConstRef<T>::type value; |
| 4131 | convertInto( true, value ); |
nothing calls this directly
no test coverage detected