Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class CImageProcessor: public QObject
- {
- Q_OBJECT
- public:
- CImageProcessor (QObject* parent = nullptr):
- QObject(parent)
- { }
- Q_INVOKABLE void processImage(QVariant image)
- {
- qDebug() << "Process image ";
- }
- }
Add Comment
Please, Sign In to add comment