![]() |
boost::scope::make_scope_exit — Creates a conditional scope guard with given callable function objects.
// In header: <boost/scope/scope_exit.hpp> template<typename F, typename C> scope_exit< typename std::decay< F >::type, typename std::decay< C >::type > make_scope_exit(F && func, C && cond, bool active = true);
Effects: Constructs a scope guard as if by calling scope_exit< std::decay_t< F >, std::decay_t< C > >( std::forward< F >(func), std::forward< C >(cond), active)
.
Parameters: |
|