add list bridge

This commit is contained in:
王劲鹏
2021-06-11 17:59:29 +08:00
committed by osborn
parent 5203113e40
commit 738566e043
5 changed files with 28 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
#include "DoricListBridge.h"
DoricListBridge::DoricListBridge(QObject *parent) : QObject(parent) {}

View File

@@ -0,0 +1,15 @@
#ifndef DORICLISTBRIDGE_H
#define DORICLISTBRIDGE_H
#include <QObject>
#include <QVariant>
#include "DoricExport.h"
class DORIC_EXPORT DoricListBridge : public QObject {
Q_OBJECT
public:
explicit DoricListBridge(QObject *parent = nullptr);
};
#endif // DORICLISTBRIDGE_H