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,25 @@
|
|||
#include <QtQml>
|
||||
#include "systemdispatcherproxy.h"
|
||||
#include "AndroidNative/systemdispatcher.h"
|
||||
|
||||
AndroidNative::SystemDispatcherProxy::SystemDispatcherProxy(QObject *parent) : QObject(parent)
|
||||
{
|
||||
connect(SystemDispatcher::instance(),SIGNAL(dispatched(QString,QVariantMap)),
|
||||
this,SIGNAL(dispatched(QString,QVariantMap)));
|
||||
|
||||
}
|
||||
|
||||
AndroidNative::SystemDispatcherProxy::~SystemDispatcherProxy()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void AndroidNative::SystemDispatcherProxy::dispatch(QString type, QVariantMap message)
|
||||
{
|
||||
SystemDispatcher::instance()->dispatch(type,message);
|
||||
}
|
||||
|
||||
void AndroidNative::SystemDispatcherProxy::loadClass(QString className)
|
||||
{
|
||||
SystemDispatcher::instance()->loadClass(className);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue