mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-02-14 00:08:50 -06:00
13 lines
245 B
C++
13 lines
245 B
C++
#include <hex/ui/popup.hpp>
|
|
|
|
namespace hex::impl {
|
|
|
|
|
|
[[nodiscard]] std::vector<std::unique_ptr<PopupBase>> &PopupBase::getOpenPopups() {
|
|
static std::vector<std::unique_ptr<PopupBase>> openPopups;
|
|
|
|
return openPopups;
|
|
}
|
|
|
|
|
|
} |