mirror of
https://gitee.com/gfdgd-xi/deep-wine-runner
synced 2025-01-13 01:58:27 +08:00
18 lines
355 B
C++
18 lines
355 B
C++
|
#include "main.h"
|
||
|
#include "dfmexepreview.h"
|
||
|
|
||
|
GenericPlugin::GenericPlugin(QObject *parent)
|
||
|
: DFM_NAMESPACE::DFMFilePreviewPlugin(parent)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
/*QObject *GenericPlugin::create(const QString &name, const QString &spec)
|
||
|
{
|
||
|
|
||
|
}*/
|
||
|
DFM_NAMESPACE::DFMFilePreview *GenericPlugin::create(const QString &key)
|
||
|
{
|
||
|
Q_UNUSED(key);
|
||
|
return new DFMExePreview;
|
||
|
}
|