This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric/driver/driver.h

21 lines
465 B
C
Raw Normal View History

2019-12-04 15:51:46 +08:00
#ifndef DRIVER_H
#define DRIVER_H
#include <QtPlugin>
class Driver {
public:
virtual void createContext(int contextId, QString* script) = 0;
virtual void destroyContext(int contextId) = 0;
2019-12-04 16:44:30 +08:00
virtual void invokeContextEntityMethod(int contextId, QString* method, QVector<QObject>* arguments) = 0;
2019-12-04 15:51:46 +08:00
virtual ~Driver() = default;
};
#define DriverInterface "pub.doric.DriverInterface"
Q_DECLARE_INTERFACE(Driver, DriverInterface)
#endif // DRIVER_H