Here the official QtCreator code repository: git clone git://gitorious.org/qt-creator/qt-creator.git
QtCreator use QPluginLoader.
What are the weakness of the QPluginLoader approach? What are the differences with QLibrary?
Here the official QtCreator code repository: git clone git://gitorious.org/qt-creator/qt-creator.git
QtCreator use QPluginLoader.
What are the weakness of the QPluginLoader approach? What are the differences with QLibrary?
QtPluginloader cannot be used if your application is statically linked against Qt.
In this case, you will also have to link to plugins statically. You can use QLibrary if you need to load dynamic libraries in a statically linked application.
http://doc.trolltech.com/4.6/qpluginloader.html
Hope it helps. Best Regards