Searched refs:active_commands_ (Results 1 – 2 of 2) sorted by relevance
41 active_commands_[command_name] = [this](const vector<std::string>& param) { method(param); }; in TestCommandHandler()92 if (active_commands_.count(name) == 0) { in HandleCommand()97 active_commands_[name](args); in HandleCommand()
87 …:unordered_map<std::string, std::function<void(const std::vector<std::string>&)>> active_commands_; variable