#ifndef DORICIMAGEBRIDGE_H
#define DORICIMAGEBRIDGE_H
#include <QObject>
#include "DoricExport.h"
class DORIC_EXPORT DoricImageBridge : public QObject {
Q_OBJECT
public:
explicit DoricImageBridge(QObject *parent = nullptr);
Q_INVOKABLE
void onNull(QString pointer);
void onReady(QString pointer);
void onLoading(QString pointer);
void onError(QString pointer);
};
#endif // DORICIMAGEBRIDGE_H