mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
13 lines
225 B
C++
13 lines
225 B
C++
|
#pragma once
|
||
|
|
||
|
/* A trivial class to run a function at the end of a scope. */
|
||
|
class Finally
|
||
|
{
|
||
|
private:
|
||
|
std::function<void()> fun;
|
||
|
|
||
|
public:
|
||
|
Finally(std::function<void()> fun) : fun(fun) { }
|
||
|
~Finally() { fun(); }
|
||
|
};
|