From 66a8b98aeb696eede174c29f42a738ff84b91667 Mon Sep 17 00:00:00 2001 From: Godzil Date: Mon, 9 Mar 2020 15:59:52 +0000 Subject: [PATCH] Add missing code \o/ --- source/include/group.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/include/group.h b/source/include/group.h index 65bc4a6..f4067a7 100644 --- a/source/include/group.h +++ b/source/include/group.h @@ -50,7 +50,9 @@ public: uint32_t getObjectCount() { return this->objectCount + this->unboxableObjectCount; }; - Group(); + Group(const char *name = nullptr); + + const char *getName() { return this->name; }; void dumpMe(FILE * fp); };