| 1127 | } |
| 1128 | |
| 1129 | void PluginManager::doLoadSiteData(color_ostream &out) |
| 1130 | { |
| 1131 | for (auto it = begin(); it != end(); ++it) |
| 1132 | { |
| 1133 | command_result cr = it->second->load_site_data(out); |
| 1134 | |
| 1135 | if (cr != CR_OK && cr != CR_NOT_IMPLEMENTED) |
| 1136 | out.printerr("Plugin {} has failed to load saved site data.\n", it->first); |
| 1137 | } |
| 1138 | } |
| 1139 | |
| 1140 | Plugin *PluginManager::operator[] (std::string name) |
| 1141 | { |
no test coverage detected