views:

171

answers:

1

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?

+1  A: 

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

Kyran Miles