rename dir
This commit is contained in:
15
doric-Qt/doric/native/native_log.h
Normal file
15
doric-Qt/doric/native/native_log.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#ifndef NATIVELOG_H
|
||||
#define NATIVELOG_H
|
||||
|
||||
#include <QObject>
|
||||
|
||||
class NativeLog : public QObject {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
NativeLog(QObject *parent = nullptr) : QObject(parent) {}
|
||||
|
||||
Q_INVOKABLE void function(QString level, QString content);
|
||||
};
|
||||
|
||||
#endif // NATIVELOG_H
|
||||
Reference in New Issue
Block a user