18 lines
293 B
C++
18 lines
293 B
C++
#ifndef NATIVEEMPTY_H
|
|
#define NATIVEEMPTY_H
|
|
|
|
#include <QObject>
|
|
|
|
#include "DoricExport.h"
|
|
|
|
class DORIC_EXPORT DoricNativeEmpty : public QObject {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
DoricNativeEmpty(QObject *parent = nullptr) : QObject(parent) {}
|
|
|
|
Q_INVOKABLE void function();
|
|
};
|
|
|
|
#endif // NATIVEEMPTY_H
|