31 lines
846 B
C++
31 lines
846 B
C++
#ifndef INTERFACEDRIVER_H
|
|
#define INTERFACEDRIVER_H
|
|
|
|
#include <QRunnable>
|
|
#include <QString>
|
|
#include <QVariant>
|
|
|
|
#include "DoricRegistry.h"
|
|
#include "async/DoricAsyncResult.h"
|
|
#include "utils/DoricThreadMode.h"
|
|
|
|
class DoricInterfaceDriver {
|
|
public:
|
|
virtual void invokeContextEntityMethod(QString contextId, QString method,
|
|
QVariantList args) = 0;
|
|
|
|
virtual void invokeDoricMethod(QString method, QVariantList args) = 0;
|
|
|
|
virtual DoricAsyncResult *asyncCall(std::function<void()> lambda,
|
|
DoricThreadMode mode) = 0;
|
|
|
|
virtual void createContext(QString contextId, QString script,
|
|
QString source) = 0;
|
|
|
|
virtual void destroyContext(QString contextId) = 0;
|
|
|
|
virtual DoricRegistry *getRegistry() = 0;
|
|
};
|
|
|
|
#endif // INTERFACEDRIVER_H
|