The Gaudi Framework  v30r3 (a5ef0a68)
finally.h File Reference
#include <utility>
Include dependency graph for finally.h:
This graph shows which files directly or indirectly include this file:

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

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

Definition at line 18 of file finally.h.

19 {
20  return {std::forward<F>( act )};
21 }