forked from lubuwest/Friendiqa
v0.1
This commit is contained in:
parent
591d55f43a
commit
fb560b54b1
115 changed files with 5537 additions and 0 deletions
|
@ -0,0 +1,23 @@
|
|||
#pragma once
|
||||
|
||||
#include <QObject>
|
||||
#include <QVariantMap>
|
||||
|
||||
namespace AndroidNative {
|
||||
|
||||
class SystemDispatcherProxy : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit SystemDispatcherProxy(QObject *parent = 0);
|
||||
~SystemDispatcherProxy();
|
||||
|
||||
Q_INVOKABLE void dispatch(QString type, QVariantMap message = QVariantMap());
|
||||
|
||||
Q_INVOKABLE void loadClass(QString className);
|
||||
|
||||
signals:
|
||||
void dispatched(QString type , QVariantMap message);
|
||||
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue