24 lines
681 B
C++
24 lines
681 B
C++
#ifndef NATIVE_BRIDGE_H
|
|
#define NATIVE_BRIDGE_H
|
|
|
|
#include <QDebug>
|
|
#include <QJSValue>
|
|
#include <QObject>
|
|
|
|
class NativeBridge : public QObject {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
NativeBridge(QObject *parent = nullptr) : QObject(parent) {}
|
|
|
|
Q_INVOKABLE void function(int contextId, QString module, QString methodName, QString callbackId, QJSValue jsValue) {
|
|
qDebug() << "contextId: " + QString::number(contextId) + ", " +
|
|
"module: " + module + ", " +
|
|
"methodName: " + methodName + ", " +
|
|
"callbackId: " + callbackId + ", " +
|
|
"arguments: " + jsValue.toString();
|
|
}
|
|
};
|
|
|
|
#endif // NATIVE_BRIDGE_H
|