浏览代码

Add missing code \o/

Godzil 4 年之前
父节点
当前提交
66a8b98aeb
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      source/include/group.h

+ 3 - 1
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);
 };