Changeset 5946 in ntrip for trunk/BNC/src/PPP/pppThread.cpp


Ignore:
Timestamp:
Aug 16, 2014, 1:45:47 PM (10 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppThread.cpp

    r5944 r5946  
    5555// Constructor
    5656////////////////////////////////////////////////////////////////////////////
    57 t_pppThread::t_pppThread(bool ownThread, const t_pppOptions* opt) : QThread(0) {
     57t_pppThread::t_pppThread(const t_pppOptions* opt) : QThread(0) {
    5858
    59   cout << "t_pppThread" << endl;
    60 
    61   _ownThread = ownThread;
    6259  _opt       = opt;
    6360  _pppRun    = 0;
     
    7269////////////////////////////////////////////////////////////////////////////
    7370t_pppThread::~t_pppThread() {
    74   cout << "~t_pppThread" << endl;
    7571  delete _pppRun;
    7672}
     
    8379    _pppRun = new t_pppRun(_opt);
    8480    if (_opt->_realTime) {
    85       if (_ownThread) {
    86         QThread::exec();
    87       }
     81      QThread::exec();
    8882    }
    8983    else {
Note: See TracChangeset for help on using the changeset viewer.