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/native/native_empty.h

16 lines
253 B
C
Raw Normal View History

2019-12-04 15:51:46 +08:00
#ifndef NATIVE_EMPTY_H
#define NATIVE_EMPTY_H
#include <QObject>
class NativeEmpty : public QObject {
Q_OBJECT
public:
NativeEmpty(QObject *parent = nullptr) : QObject(parent) {}
2019-12-14 10:04:17 +08:00
Q_INVOKABLE void function();
2019-12-04 15:51:46 +08:00
};
#endif // NATIVE_EMPTY_H