Using the groupParsee

This commit is contained in:
Rafał Grodziński
2025-08-08 12:34:28 +09:00
parent 39be17e6a1
commit e4c956cdd6
8 changed files with 292 additions and 377 deletions

View File

@@ -2,19 +2,9 @@
#include "Parsee.h"
ParseeGroup::ParseeGroup(vector<Parsee> parsees)://, optional<ParseeGroup> repeatedGroup):
parsees(parsees) {
/*if (repeatedGroup) {
this->repeatedGroup = *repeatedGroup;
} else {
this->repeatedGroup = {};
}*/
}
ParseeGroup::ParseeGroup(vector<Parsee> parsees):
parsees(parsees) { }
vector<Parsee> ParseeGroup::getParsees() {
return parsees;
}
/*optional<reference_wrapper<ParseeGroup>> ParseeGroup::getRepeatedGroup() {
return repeatedGroup;
}*/