Changeset 3684 in ntrip
- Timestamp:
- Feb 12, 2012, 12:32:39 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncpostprocess.cpp
r3683 r3684 41 41 #include <iostream> 42 42 #include "bncpostprocess.h" 43 #include "bncapp.h" 43 44 #include "bncsettings.h" 44 45 #include "pppopt.h" … … 61 62 //////////////////////////////////////////////////////////////////////////// 62 63 t_postProcessing::~t_postProcessing() { 63 cout << "~t_postProcessing" << endl;64 64 delete _pppClient; 65 65 delete _rnxNavFile; … … 71 71 //////////////////////////////////////////////////////////////////////////// 72 72 void t_postProcessing::slotMessage(QByteArray msg, bool /* showOnScreen */) { 73 cout << msg.data();73 ((bncApp*) qApp)->slotMessage(msg, false); 74 74 } 75 75 … … 92 92 this, SLOT(slotMessage(const QByteArray,bool))); 93 93 } 94 95 cout << "obsFile: " << _opt->obsFileName.toAscii().data() << endl;96 cout << "navFile: " << _opt->navFileName.toAscii().data() << endl;97 cout << "corrFile: " << _opt->corrFileName.toAscii().data() << endl;98 94 99 95 // Read Ephemerides … … 144 140 } 145 141 146 ///// beg test147 int MAXI = 5;148 for (int ii = 1; ii < MAXI; ii++) {149 cout << "ii = " << ii << endl;150 emit progress(float(ii)/float(MAXI));151 sleep(1);152 }153 //// end test142 // ///// beg test 143 // int MAXI = 5; 144 // for (int ii = 1; ii < MAXI; ii++) { 145 // cout << "ii = " << ii << endl; 146 // emit progress(float(ii)/float(MAXI)); 147 // sleep(1); 148 // } 149 // //// end test 154 150 155 151 emit finished();
Note:
See TracChangeset
for help on using the changeset viewer.