mirror of
https://github.com/modernw/App-Installer-For-Windows-8.x-Reset.git
synced 2026-04-11 17:57:19 +10:00
8 lines
202 B
C++
8 lines
202 B
C++
#pragma once
|
|
#include <functional>
|
|
struct raii
|
|
{
|
|
std::function <void ()> endtask = nullptr;
|
|
raii (std::function <void ()> pFunc = nullptr): endtask (pFunc) {}
|
|
~raii () { if (endtask) endtask (); }
|
|
}; |