Changeset 5480 in ntrip for trunk/GnssCenter
- Timestamp:
- Sep 18, 2013, 2:00:07 PM (11 years ago)
- Location:
- trunk/GnssCenter/monitor
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GnssCenter/monitor/monitor.cpp
r5478 r5480 148 148 // 149 149 ///////////////////////////////////////////////////////////////////////////// 150 void t_monitor::slotMessage(QByteArray msg) { 151 152 } 153 154 // 155 ///////////////////////////////////////////////////////////////////////////// 150 156 void t_monitor::slotStartThrift() { 151 157 if (!_thriftClient) { 152 158 _thriftClient = new t_thriftClient(this, _host, _port.toInt()); 153 159 connect(_thriftClient, SIGNAL(finished()), this, SLOT(slotThriftFinished())); 160 connect(_thriftClient, SIGNAL(message(QByteArray)), this, SLOT(slotMessage(QByteArray))); 154 161 _thriftClient->start(); 155 162 slotPlotResults(); -
trunk/GnssCenter/monitor/monitor.h
r5474 r5480 29 29 void slotThriftFinished(); 30 30 void slotPlotResults(); 31 void slotMessage(QByteArray msg); 31 32 32 33 private:
Note:
See TracChangeset
for help on using the changeset viewer.