MCPcopy Create free account
hub / github.com/ModOrganizer2/modorganizer / pluginInterfaces

Method pluginInterfaces

src/plugincontainer.cpp:132–145  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

130};
131
132QStringList PluginContainer::pluginInterfaces()
133{
134 // Find all the names:
135 QStringList names;
136 boost::mp11::mp_for_each<PluginTypeOrder>([&names](const auto* p) {
137 using plugin_type = std::decay_t<decltype(*p)>;
138 auto name = PluginTypeName<plugin_type>::value();
139 if (!name.isEmpty()) {
140 names.append(name);
141 }
142 });
143
144 return names;
145}
146
147// PluginRequirementProxy
148

Callers 1

PluginsSettingsTabMethod · 0.80

Calls 1

isEmptyMethod · 0.45

Tested by

no test coverage detected