PYBIND11_EMBEDDED_MODULE(yourPlugin, m) { // yourPlugin will will be the module name in Python ( ... import yourPlugin )
PYBIND11_EMBEDDED_MODULE(YourPlugin, m) { // yourPlugin will will be the module name in Python ( ... import yourPlugin )
QObject* pluginPointer = getPluginPointer("Your"); // This will retrieve your plugin instance pointer. The name is the plugin name set via the name() function.
pythonInfo->append("Plugins with Python support ( The plugin modules will be imported with their name shown below.):\n");
pythonInfo->append("Each module is automatically loaded by the core with the name given below.");
pythonInfo->append("An instance for each plugin is automatically generated with a lower case name of the module (E.g. the plugin Move will provide an instance move).\n");
pythonInfo->append("Available plugins with Python support:\n");