MCPcopy Create free account
hub / github.com/apohl79/audiogridder / createPluginIDWithName

Method createPluginIDWithName

Server/Source/Processor.cpp:72–74  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

70}
71
72String Processor::createPluginIDWithName(const PluginDescription& d) {
73 return d.pluginFormatName + (d.name.isNotEmpty() ? "-" + d.name : "") + "-" + String::toHexString(d.uniqueId);
74}
75
76String Processor::createPluginIDDepricated(const PluginDescription& d) {
77 return d.pluginFormatName + (d.name.isNotEmpty() ? "-" + d.name : "") + "-" + String::toHexString(d.deprecatedUid);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected