2023-12-27 20:59:22 +00:00
|
|
|
// SPDX-FileCopyrightText: 2023 Yury Gubich <blue@macaw.me>
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2023-12-26 23:31:55 +00:00
|
|
|
#include "finalaction.h"
|
|
|
|
|
|
|
|
FinalAction::FinalAction(const std::function<void()>& action):
|
|
|
|
action(action)
|
|
|
|
{}
|
|
|
|
|
|
|
|
FinalAction::~FinalAction() {
|
|
|
|
action();
|
|
|
|
}
|
|
|
|
|