| 4391 | class BoundArgFunction { |
| 4392 | public: |
| 4393 | BoundArgFunction() : functionObj( CLARA_NULL ) {} |
| 4394 | BoundArgFunction( IArgFunction<ConfigT>* _functionObj ) : functionObj( _functionObj ) {} |
| 4395 | BoundArgFunction( BoundArgFunction const& other ) : functionObj( other.functionObj ? other.functionObj->clone() : CLARA_NULL ) {} |
| 4396 | BoundArgFunction& operator = ( BoundArgFunction const& other ) { |