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;
|
|
}
|
|
|
|
|
|
} |