mirror of
https://github.com/SerenityOS/serenity
synced 2024-11-05 17:46:52 +00:00
26 lines
315 B
C++
26 lines
315 B
C++
#pragma once
|
|
|
|
#include <AK/StdLibExtras.h>
|
|
|
|
namespace AK {
|
|
|
|
template<typename Callback>
|
|
class ScopeGuard {
|
|
public:
|
|
ScopeGuard(Callback callback)
|
|
: m_callback(move(callback))
|
|
{
|
|
}
|
|
|
|
~ScopeGuard()
|
|
{
|
|
m_callback();
|
|
}
|
|
|
|
private:
|
|
Callback m_callback;
|
|
};
|
|
|
|
}
|
|
|
|
using AK::ScopeGuard;
|