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/native/native_empty.h
2019-12-04 15:51:46 +08:00

19 lines
313 B
C++

#ifndef NATIVE_EMPTY_H
#define NATIVE_EMPTY_H
#include <QObject>
#include <QDebug>
class NativeEmpty : public QObject {
Q_OBJECT
public:
NativeEmpty(QObject *parent = nullptr) : QObject(parent) {}
Q_INVOKABLE void function() {
qDebug() << "nativeEmpty";
}
};
#endif // NATIVE_EMPTY_H