Changeset 5944 in ntrip


Ignore:
Timestamp:
Aug 16, 2014, 10:26:39 AM (10 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src/PPP
Files:
3 edited

Legend:

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

    r5921 r5944  
    9494//////////////////////////////////////////////////////////////////////////////
    9595void t_pppMain::stop() {
     96
     97  cout << "t_pppMain::stop" << endl;
    9698
    9799  if (!_running) {
  • trunk/BNC/src/PPP/pppRun.cpp

    r5942 r5944  
    6060////////////////////////////////////////////////////////////////////////////
    6161t_pppRun::t_pppRun(const t_pppOptions* opt) {
     62
     63  cout << "t_pppRun" << endl;
    6264
    6365  _opt = opt;
     
    106108////////////////////////////////////////////////////////////////////////////
    107109t_pppRun::~t_pppRun() {
     110  cout << "~t_pppRun" << endl;
    108111}
    109112
     
    422425    qApp->exit(0);
    423426  }
     427  else {
     428    BNC_CORE->stopPPP();
     429  }
    424430}
    425431
  • trunk/BNC/src/PPP/pppThread.cpp

    r5930 r5944  
    5757t_pppThread::t_pppThread(bool ownThread, const t_pppOptions* opt) : QThread(0) {
    5858
     59  cout << "t_pppThread" << endl;
     60
    5961  _ownThread = ownThread;
    6062  _opt       = opt;
     
    7072////////////////////////////////////////////////////////////////////////////
    7173t_pppThread::~t_pppThread() {
     74  cout << "~t_pppThread" << endl;
    7275  delete _pppRun;
    7376}
Note: See TracChangeset for help on using the changeset viewer.