16 lines
279 B
C++
16 lines
279 B
C++
#ifndef NATIVE_REQUIRE_H
|
|
#define NATIVE_REQUIRE_H
|
|
|
|
#include <QObject>
|
|
|
|
class DoricNativeRequire : public QObject {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
DoricNativeRequire(QObject *parent = nullptr) : QObject(parent) {}
|
|
|
|
Q_INVOKABLE void function(QString name);
|
|
};
|
|
|
|
#endif // NATIVE_REQUIRE_H
|