Changeset 3643 in ntrip
- Timestamp:
- Jan 24, 2012, 11:48:24 AM (13 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncpostprocess.cpp
r3642 r3643 43 43 #include "bncsettings.h" 44 44 #include "pppopt.h" 45 #include "bncpppclient.h" 45 46 46 47 using namespace std; … … 57 58 cout << "~t_postProcessing" << endl; 58 59 delete _opt; 60 delete _pppClient; 59 61 } 60 62 … … 62 64 //////////////////////////////////////////////////////////////////////////// 63 65 void t_postProcessing::run() { 66 67 if (!_pppClient) { 68 _pppClient = new bncPPPclient("POST", _opt, false); 69 } 64 70 65 71 cout << "obsFile: " << _opt->obsFileName.toAscii().data() << endl; -
trunk/BNC/bncpostprocess.h
r3642 r3643 30 30 31 31 class t_pppOpt; 32 class bncPPPclient; 32 33 33 34 class t_postProcessing : public QThread { … … 48 49 49 50 private: 50 t_pppOpt* _opt; 51 t_pppOpt* _opt; 52 bncPPPclient* _pppClient; 51 53 }; 52 54
Note:
See TracChangeset
for help on using the changeset viewer.