| 10 | #include "utils.h" |
| 11 | |
| 12 | SidepanelMonitor::SidepanelMonitor(QWidget *parent) : |
| 13 | QFrame(parent), |
| 14 | ui(new Ui::SidepanelMonitor), |
| 15 | _zmq_context(1), |
| 16 | _zmq_subscriber(_zmq_context, ZMQ_SUB), |
| 17 | _connected(false), |
| 18 | _msg_count(0) |
| 19 | { |
| 20 | ui->setupUi(this); |
| 21 | _timer = new QTimer(this); |
| 22 | |
| 23 | connect( _timer, &QTimer::timeout, this, &SidepanelMonitor::on_timer ); |
| 24 | } |
| 25 | |
| 26 | SidepanelMonitor::~SidepanelMonitor() |
| 27 | { |
nothing calls this directly
no outgoing calls
no test coverage detected