code format & class prefix
This commit is contained in:
16
doric-Qt/doric/engine/DoricNativeEmpty.h
Normal file
16
doric-Qt/doric/engine/DoricNativeEmpty.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#ifndef NATIVEEMPTY_H
|
||||
#define NATIVEEMPTY_H
|
||||
|
||||
#include <QJSValue>
|
||||
#include <QObject>
|
||||
|
||||
class DoricNativeEmpty : public QObject {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
DoricNativeEmpty(QObject *parent = nullptr) : QObject(parent) {}
|
||||
|
||||
Q_INVOKABLE QJSValue function();
|
||||
};
|
||||
|
||||
#endif // NATIVEEMPTY_H
|
||||
Reference in New Issue
Block a user