This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-Qt/doric/engine/native_empty.h

17 lines
274 B
C
Raw Normal View History

2021-01-28 17:06:40 +08:00
#ifndef NATIVEEMPTY_H
#define NATIVEEMPTY_H
2019-12-04 15:51:46 +08:00
#include <QObject>
2021-01-28 17:06:40 +08:00
#include <QJSValue>
2019-12-04 15:51:46 +08:00
class NativeEmpty : public QObject {
Q_OBJECT
public:
NativeEmpty(QObject *parent = nullptr) : QObject(parent) {}
2021-01-28 17:06:40 +08:00
Q_INVOKABLE QJSValue function();
2019-12-04 15:51:46 +08:00
};
2021-01-28 17:06:40 +08:00
#endif // NATIVEEMPTY_H