mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
Remove dependent FlagGroups, to make sure that we can't use them by mistake.
This commit is contained in:
@@ -30,12 +30,6 @@ static ActionFlag docFlag = ActionFlag(
|
|||||||
"Shows the available configuration options.",
|
"Shows the available configuration options.",
|
||||||
doDoc);
|
doDoc);
|
||||||
|
|
||||||
FlagGroup::FlagGroup(const std::initializer_list<FlagGroup*> groups):
|
|
||||||
_groups(groups.begin(), groups.end())
|
|
||||||
{
|
|
||||||
currentFlagGroup = this;
|
|
||||||
}
|
|
||||||
|
|
||||||
FlagGroup::FlagGroup()
|
FlagGroup::FlagGroup()
|
||||||
{
|
{
|
||||||
currentFlagGroup = this;
|
currentFlagGroup = this;
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ class FlagGroup
|
|||||||
private:
|
private:
|
||||||
FlagGroup(const FlagGroup& group);
|
FlagGroup(const FlagGroup& group);
|
||||||
public:
|
public:
|
||||||
FlagGroup(const std::initializer_list<FlagGroup*> groups);
|
|
||||||
FlagGroup();
|
FlagGroup();
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|||||||
Reference in New Issue
Block a user