single instance log & add global broadcast

This commit is contained in:
王劲鹏
2021-06-07 18:12:31 +08:00
committed by osborn
parent bb48faaf47
commit 4c3b5b1278
8 changed files with 32 additions and 7 deletions

View File

@@ -11,9 +11,9 @@
class DORIC_EXPORT DoricNativeDriver : public DoricInterfaceDriver {
private:
static DoricNativeDriver *local_instance;
DoricNativeDriver() {}
DoricNativeDriver() { qDebug() << "DoricNativeDriver constructor"; }
~DoricNativeDriver() {}
~DoricNativeDriver() { qDebug() << "DoricNativeDriver destructor"; }
DoricJSEngine jsEngine;