| 45 | std::string description; |
| 46 | std::string link; |
| 47 | PluginInfo(const std::string& n, const std::string& d, const std::string& l) |
| 48 | : name(n), description(d), link(l) |
| 49 | {} |
| 50 | }; |
| 51 | |
| 52 | struct StaticPluginInfo : public PluginInfo |
nothing calls this directly
no outgoing calls
no test coverage detected