add files from main project
This commit is contained in:
18
doric/native/native_bridge.h
Normal file
18
doric/native/native_bridge.h
Normal 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
|
||||
Reference in New Issue
Block a user