Using the groupParsee
This commit is contained in:
@@ -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;
|
||||
}*/
|
||||
Reference in New Issue
Block a user