このコードを使用してプラグインをロードしようとしました:
QString path = QFileDialog::getOpenFileName(0);
QPluginLoader loader(path);
AnprPluginInterface *i = qobject_cast< AnprPluginInterface* >(loader.instance());
if (i == NULL )
QMessageBox::information(0, "this", "error loading plugin." + loader.errorString());
else
QMessageBox::information(0, "this", "plugin loaded.");
プラグインの絶対パスを送信しましたQPluginLoader
が、プラグインが見つからないと表示されます。
エラー:
error loading plugin. "Cannot load library The specified module could not be found."