14 lines
316 B
C
14 lines
316 B
C
|
#ifndef DORICNETWORKPLUGIN_H
|
||
|
#define DORICNETWORKPLUGIN_H
|
||
|
|
||
|
#include "DoricNativePlugin.h"
|
||
|
|
||
|
class DoricNetworkPlugin : public DoricNativePlugin {
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
using DoricNativePlugin::DoricNativePlugin;
|
||
|
|
||
|
Q_INVOKABLE void request(QString jsValueString, QString callbackId);
|
||
|
};
|
||
|
#endif // DORICNETWORKPLUGIN_H
|