Hi all,
I have a qt plugin and this plugin requires a dll to carry its operations. The client just loads the plugin and everything should work.
May be a basic question, how can I do it?
Hi all,
I have a qt plugin and this plugin requires a dll to carry its operations. The client just loads the plugin and everything should work.
May be a basic question, how can I do it?
You can load a shared library at runtime using QLibrary. (http://doc.qt.nokia.com/4.0/qlibrary.html#details)... or another option is linking implicitly the library just as you do as usual.
HI, Srikanth
The normal and most flexible way to include a plugin with an application is to compile it into a dynamic library that is shipped separately, and detected and loaded at runtime.
Read this complete article : http://doc.trolltech.com/4.6/plugins-howto.html