nix-super/src/libutil/finally.hh

14 lines
220 B
C++
Raw Normal View History

#pragma once
/* A trivial class to run a function at the end of a scope. */
template<typename Fn>
class Finally
{
private:
Fn fun;
public:
Finally(Fn fun) : fun(std::move(fun)) { }
~Finally() { fun(); }
};