MCPcopy Create free account
hub / github.com/BatchDrake/SigDigger / connectNetForwarder

Method connectNetForwarder

Default/GenericInspector/InspectorUI.cpp:649–681  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

647}
648
649void
650InspectorUI::connectNetForwarder()
651{
652 connect(
653 this->socketForwarder,
654 SIGNAL(stopped(void)),
655 this,
656 SLOT(onNetError(void)));
657
658 connect(
659 this->socketForwarder,
660 SIGNAL(swamped(void)),
661 this,
662 SLOT(onNetSwamped(void)));
663
664 connect(
665 this->socketForwarder,
666 SIGNAL(dataRate(qreal)),
667 this,
668 SLOT(onNetRate(qreal)));
669
670 connect(
671 this->socketForwarder,
672 SIGNAL(commit(void)),
673 this,
674 SLOT(onNetCommit(void)));
675
676 connect(
677 this->socketForwarder,
678 SIGNAL(ready(void)),
679 this,
680 SLOT(onNetReady(void)));
681}
682
683std::string
684InspectorUI::captureFileName(void) const

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected