add files from main project

This commit is contained in:
pengfei.zhou
2019-12-04 15:51:46 +08:00
parent 2ca38388f3
commit dbdd1770ef
19 changed files with 579 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#ifndef NATIVE_BRIDGE_H
#define NATIVE_BRIDGE_H
#include <QObject>
#include <QDebug>
class NativeBridge : public QObject {
Q_OBJECT
public:
NativeBridge(QObject *parent = nullptr) : QObject(parent) {}
Q_INVOKABLE void function() {
}
};
#endif // NATIVE_BRIDGE_H