14 lines
229 B
C++
14 lines
229 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <functional>
|
||
|
|
|
||
|
|
// calls a function when it goes out of scope
|
||
|
|
class CScopeGuard {
|
||
|
|
public:
|
||
|
|
CScopeGuard(const std::function<void()>& fn_);
|
||
|
|
~CScopeGuard();
|
||
|
|
|
||
|
|
private:
|
||
|
|
std::function<void()> fn;
|
||
|
|
};
|