| 4088 | struct BoundNullaryMethod : IArgFunction<C>{ |
| 4089 | BoundNullaryMethod( void (C::*_member)() ) : member( _member ) {} |
| 4090 | virtual void set( C& p, std::string const& stringValue ) const { |
| 4091 | bool value; |
| 4092 | convertInto( stringValue, value ); |
| 4093 | if( value ) |
| 4094 | (p.*member)(); |
| 4095 | } |
| 4096 | virtual void setFlag( C& p ) const { |
| 4097 | (p.*member)(); |
| 4098 | } |
nothing calls this directly
no test coverage detected