Changeset 1373 in ntrip for trunk/BNC/bncnetquery.cpp


Ignore:
Timestamp:
Dec 28, 2008, 9:37:57 PM (15 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncnetquery.cpp

    r1372 r1373  
    5353}
    5454
     55void bncNetQuery::slotFinished() {
     56  cout << "slotFinished" << endl;
     57}
     58
     59void bncNetQuery::slotReadyRead() {
     60  cout << "slotReadyRead" << endl;
     61}
     62
    5563// Start request, block till the next read (public)
    5664////////////////////////////////////////////////////////////////////////////
    5765t_irc bncNetQuery::startRequest(const QUrl& url) {
    58   return startRequest(url, false);
     66  return startRequest(url, true);
    5967}
    6068
     
    9098  // Connect Signals
    9199  // ---------------
     100  connect(_reply, SIGNAL(finished()), this, SLOT(slotFinished()));
     101  connect(_reply, SIGNAL(readyRead()), this, SLOT(slotReadyRead()));
     102
    92103  connect(_reply, SIGNAL(finished()), _eventLoop, SLOT(quit()));
    93104  if (!full) {
Note: See TracChangeset for help on using the changeset viewer.