I am trying to do a connect with a std::vector& using queued connection
connect(this, SIGNAL(process(QVector<FrameData*>&)),
this, SLOT(beginProcess(QVector<FrameData*>&),
Qt::ConnectionType::QueuedConnection);
What parameters should I pass for QRegisterMetaType for this to work?
Thanks in advance!