MCPcopy Create free account
hub / github.com/GameTechDev/PresentMon / AddGroup_

Method AddGroup_

IntelPresentMon/CommonUtilities/cli/CliFramework.cpp:67–76  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

65 return options;
66 }
67 void OptionsContainer::AddGroup_(std::string name, std::string desc)
68 {
69 activeGroup_ = name;
70 if (name.empty()) {
71 pCurrentSubcommand_->add_option_group({})->silent();
72 }
73 else {
74 pCurrentSubcommand_->add_option_group(std::move(name), std::move(desc));
75 }
76 }
77 CLI::App* OptionsContainer::AddSubcommand_(std::string name, std::string desc)
78 {
79 pCurrentSubcommand_ = app_.add_subcommand(std::move(name), std::move(desc));

Callers

nothing calls this directly

Calls 1

emptyMethod · 0.80

Tested by

no test coverage detected