44 output <<
"GuidanceControllerConfig { " << std::endl
45 <<
"required_plugins: [ " << std::endl;
47 for (
auto node :
c.required_plugins)
48 output << node <<
" ";
50 output <<
"] " << std::endl <<
"auto_activated_plugins: [ ";
52 for (
auto node :
c.auto_activated_plugins)
53 output << node <<
" ";
55 output <<
"] " << std::endl
Stuct containing the algorithm configuration values for the GuidanceController.
std::vector< std::string > auto_activated_plugins
List of guidance plugins which are not required but the user wishes to have automatically activated.
friend std::ostream & operator<<(std::ostream &output, const GuidanceControllerConfig &c)
std::vector< std::string > required_plugins
List of guidance plugins (node name) to consider required and who's failure shall result in automatio...