| 4473 | template<typename C, typename T> |
| 4474 | struct BoundBinaryFunction : IArgFunction<C>{ |
| 4475 | BoundBinaryFunction( void (*_function)( C&, T ) ) : function( _function ) {} |
| 4476 | virtual void set( C& obj, std::string const& stringValue ) const { |
| 4477 | typename RemoveConstRef<T>::type value; |
| 4478 | convertInto( stringValue, value ); |
nothing calls this directly
no outgoing calls
no test coverage detected