소스 검색

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