This patch improves the way the plugins are registered against the factory.<br>Now you can declare an array with all your pair of data as follows:<br> static const char* metadata[] = {<br> "key", "MyConcreteType",
<br> "category", "CLAM",<br> "description", "MyConcreteType",<br> 0<br> };<br> static FactoryRegistrator<ProcessingFactory, MyConcreteType> reg = metadata;
<br>