LocalPlainGdbAdapter::LocalPlainGdbAdapter(GdbEngine *engine) : AbstractPlainGdbAdapter(engine) { // Output connect(&m_outputCollector, SIGNAL(byteDelivery(QByteArray)), engine, SLOT(readDebugeeOutput(QByteArray))); }
GdbPlainEngine::GdbPlainEngine(const DebuggerStartParameters &startParameters) : GdbEngine(startParameters) { // Output connect(&m_outputCollector, SIGNAL(byteDelivery(QByteArray)), this, SLOT(readDebugeeOutput(QByteArray))); }
PlainGdbAdapter::PlainGdbAdapter(GdbEngine *engine, QObject *parent) : AbstractGdbAdapter(engine, parent) { // Output connect(&m_outputCollector, SIGNAL(byteDelivery(QByteArray)), engine, SLOT(readDebugeeOutput(QByteArray))); }