Changeset 5480 in ntrip for trunk/GnssCenter/monitor


Ignore:
Timestamp:
Sep 18, 2013, 2:00:07 PM (11 years ago)
Author:
mervart
Message:
 
Location:
trunk/GnssCenter/monitor
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/GnssCenter/monitor/monitor.cpp

    r5478 r5480  
    148148//
    149149/////////////////////////////////////////////////////////////////////////////
     150void t_monitor::slotMessage(QByteArray msg) {
     151
     152}
     153
     154//
     155/////////////////////////////////////////////////////////////////////////////
    150156void t_monitor::slotStartThrift() {
    151157  if (!_thriftClient) {
    152158    _thriftClient = new t_thriftClient(this, _host, _port.toInt());
    153159    connect(_thriftClient, SIGNAL(finished()), this, SLOT(slotThriftFinished()));
     160    connect(_thriftClient, SIGNAL(message(QByteArray)), this, SLOT(slotMessage(QByteArray)));
    154161    _thriftClient->start();
    155162    slotPlotResults();
  • trunk/GnssCenter/monitor/monitor.h

    r5474 r5480  
    2929  void slotThriftFinished();
    3030  void slotPlotResults();
     31  void slotMessage(QByteArray msg);
    3132
    3233 private:
Note: See TracChangeset for help on using the changeset viewer.