The Gaudi Framework  master (37c0b60a)
finally.h File Reference
#include <utility>
Include dependency graph for finally.h:

Go to the source code of this file.

Classes

struct  final_action< F >
 

Functions

template<typename F >
final_action< F > finally (F &&act)
 

Function Documentation

◆ finally()

template<typename F >
final_action<F> finally ( F &&  act)

Definition at line 29 of file finally.h.

29  {
30  return { std::forward<F>( act ) };
31 }