Plugins, signals and slots
General and Desktop
2
Posts
2
Posters
966
Views
1
Watching
-
why Qt doesn't allow declaring methodes as signals or slots in the plugin interface?
so i did the following
i declared pure virtual functions ,but in the implementation ,i reimplamented them as signals and slots,
then used the QPluginLoader to load the plugin,then used connect, and they worked fine when i tested them, so is this method recommanded and won't cause bugs or maybe there are other appropriate methods?@interface.h
...
virtual void send(int)=0;
...@@interfaceplugin.h
....
signals:
void send(int);
....@then connect the plugin when i load it