Changeset 2182 in ntrip for trunk/BNC/bnccaster.cpp


Ignore:
Timestamp:
Jan 4, 2010, 3:39:55 PM (14 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bnccaster.cpp

    r2035 r2182  
    3838 *
    3939 * -----------------------------------------------------------------------*/
     40
     41#include <iostream>
    4042
    4143#include <math.h>
     
    244246  connect(getThread, SIGNAL(getThreadFinished(QByteArray)),
    245247          this, SLOT(slotGetThreadFinished(QByteArray)));
     248
     249  connect(getThread, SIGNAL(newNMEAstr(QByteArray)),
     250          this, SLOT(slotNewNMEAstr(QByteArray)));
    246251
    247252  connect(((bncApp*)qApp), SIGNAL(newEphGPS(gpsephemeris)),
     
    510515  return -1;
    511516}
     517
     518//
     519////////////////////////////////////////////////////////////////////////////
     520void bncCaster::slotNewNMEAstr(QByteArray str) {
     521
     522  std::cout << str.data();
     523
     524}
Note: See TracChangeset for help on using the changeset viewer.