Changeset 5716 in ntrip for trunk/BNC/src/bncwindow.cpp


Ignore:
Timestamp:
Jul 31, 2014, 12:17:11 PM (10 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncwindow.cpp

    r5705 r5716  
    7373#endif
    7474
     75#include "PPP/pppMain.h"
     76
     77using namespace BNC;
    7578using namespace std;
    7679
     
    97100  _runningPostProcessingReqc = false;
    98101  _postProcessing            = 0;
     102  _pppMain                   = new t_pppMain();
    99103
    100104  _pppSPPComboBox     = 0; // necessary for enableStartStop()
     
    481485  _mountPointsTable->horizontalHeader()->setStretchLastSection(true);
    482486  _mountPointsTable->horizontalHeader()->setDefaultAlignment(Qt::AlignLeft);
    483 _mountPointsTable->setHorizontalHeaderLabels(labels);
     487  _mountPointsTable->setHorizontalHeaderLabels(labels);
    484488  _mountPointsTable->setGridStyle(Qt::NoPen);
    485489  _mountPointsTable->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
     
    15261530  delete _caster;
    15271531  delete _casterEph;
     1532  delete _pppMain;
    15281533}
    15291534
     
    20042009    startRealTime();
    20052010  }
     2011  if (_pppMain) {
     2012    _pppMain->start();
     2013  }
    20062014}
    20072015
     
    21012109  if (_postProcessing) {
    21022110    _postProcessing->terminate();
     2111  }
     2112
     2113  if (_pppMain) {
     2114    _pppMain->stop();
    21032115  }
    21042116
Note: See TracChangeset for help on using the changeset viewer.