MenuItem with for and if

This commit is contained in:
Olivier Goffart 2025-01-28 14:02:45 +01:00
parent e75415554a
commit 010126992e
24 changed files with 889 additions and 258 deletions

View file

@ -40,6 +40,7 @@ struct VBox
{
const T *vtable = nullptr;
void *instance = nullptr;
explicit VBox(const T *vtable, void *instance) : vtable(vtable), instance(instance) { }
VBox(const VBox &) = delete;
VBox() = default;
VBox &operator=(const VBox &) = delete;