MCPcopy Create free account
hub / github.com/BehaviorTree/Groot / SidepanelMonitor

Method SidepanelMonitor

bt_editor/sidepanel_monitor.cpp:12–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10#include "utils.h"
11
12SidepanelMonitor::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
26SidepanelMonitor::~SidepanelMonitor()
27{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected