Changeset 5977 in ntrip


Ignore:
Timestamp:
Aug 17, 2014, 2:00:41 PM (10 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src/PPP
Files:
3 edited

Legend:

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

    r5975 r5977  
    5252//////////////////////////////////////////////////////////////////////////////
    5353t_pppMain::t_pppMain() {
    54   cout << "t_pppMain" << endl;
    5554  _running = false;
    5655}
     
    5958//////////////////////////////////////////////////////////////////////////////
    6059t_pppMain::~t_pppMain() {
    61   cout << "~t_pppMain" << endl;
    6260  stop();
    6361  QListIterator<t_pppOptions*> iOpt(_options);
     
    9593//////////////////////////////////////////////////////////////////////////////
    9694void t_pppMain::stop() {
    97 
    98   cout << "t_pppMain::stop" << endl;
    9995
    10096  if (!_running) {
  • trunk/BNC/src/PPP/pppRun.cpp

    r5973 r5977  
    6161////////////////////////////////////////////////////////////////////////////
    6262t_pppRun::t_pppRun(const t_pppOptions* opt) {
    63 
    64   cout << "t_pppRun" << endl;
    6563
    6664  _opt = opt;
     
    119117////////////////////////////////////////////////////////////////////////////
    120118t_pppRun::~t_pppRun() {
    121   cout << "~t_pppRun" << endl;
    122119}
    123120
     
    450447void t_pppRun::slotSetStopFlag() {
    451448  QMutexLocker locker(&_mutex);
    452   cout << "t_pppRun::slotSetStopFlag" << endl;
    453449  _stopFlag = true;
    454450}
  • trunk/BNC/src/PPP/pppThread.cpp

    r5973 r5977  
    5757t_pppThread::t_pppThread(const t_pppOptions* opt) : QThread(0) {
    5858
    59   cout << "t_pppThread" << endl;
    60 
    6159  _opt       = opt;
    6260  _pppRun    = 0;
     
    7169////////////////////////////////////////////////////////////////////////////
    7270t_pppThread::~t_pppThread() {
    73   cout << "~t_pppThread" << endl;
    7471  delete _pppRun;
    7572}
Note: See TracChangeset for help on using the changeset viewer.