Is there an introspection mechanism for Qt plugin to retrieve the list of types registered ?
Solved
General and Desktop
-
Hi,
I have creating a set of display components (as QML and QQuickPaintedItem based components) available as a plugin inheriting QQmlEngineExtensionPlugin.
To test and visualize the plugin, I have wrote a small application to visualize and modify the plugin components dynamically loaded. This is working well but it is relying on a static stringlist defined in the app with the name of the components registered by the plugin that could be dynamically loaded. Is there a mean to retrieve the list of registered type of a given plugin so that I could get rid of the string list ?
Thanks for your help.