| 3490 | template<typename C> |
| 3491 | struct BoundUnaryFunction : IArgFunction<C>{ |
| 3492 | BoundUnaryFunction( void (*_function)( C& ) ) : function( _function ) {} |
| 3493 | virtual void set( C& obj, std::string const& stringValue ) const { |
| 3494 | bool value; |
| 3495 | convertInto( stringValue, value ); |
nothing calls this directly
no outgoing calls
no test coverage detected