1
0
mirror of synced 2024-12-14 08:42:54 +01:00
ImHex/lib/libimhex/source/ui/popup.cpp

21 lines
398 B
C++
Raw Normal View History

#include <hex/ui/popup.hpp>
#include <hex/helpers/auto_reset.hpp>
namespace hex::impl {
[[nodiscard]] std::vector<std::unique_ptr<PopupBase>> &PopupBase::getOpenPopups() {
static AutoReset<std::vector<std::unique_ptr<PopupBase>>> openPopups;
return openPopups;
}
2023-12-19 23:21:20 +01:00
std::mutex& PopupBase::getMutex() {
static std::mutex mutex;
return mutex;
}
}