Skip to main content Link Menu Expand (external link) Document Search Copy Copied

void addOptions(vector<string> options)

Adds multiple options to the variable config

Parameters

  • options - The options to be added

Example

VariableConfig config ({"Option 1", "Option 2", "Option 3"}, "Title");
config.addOptions({"Option 4", "Option 5"});