- Timestamp:
- Feb 12, 2012, 2:07:57 PM (13 years ago)
- Location:
- trunk/BNC
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncpostprocess.cpp
r3685 r3688 47 47 #include "rnxobsfile.h" 48 48 #include "rnxnavfile.h" 49 #include "corrfile.h" 49 50 50 51 using namespace std; … … 56 57 _rnxObsFile = 0; 57 58 _rnxNavFile = 0; 59 _corrFile = 0; 58 60 _pppClient = 0; 59 61 } … … 65 67 delete _rnxNavFile; 66 68 delete _rnxObsFile; 69 delete _corrFile; 67 70 delete _opt; 68 71 } … … 86 89 _pppClient = new bncPPPclient("POST", _opt, false); 87 90 88 connect(this, SIGNAL(newCorrections(QList<QString>)), 89 _pppClient, SLOT(slotNewCorrections(QList<QString>))); 91 if (!_opt->corrFileName.isEmpty()) { 92 _corrFile = new t_corrFile(_opt->corrFileName); 93 connect(_corrFile, SIGNAL(newCorrections(QList<QString>)), 94 _pppClient, SLOT(slotNewCorrections(QList<QString>))); 95 } 90 96 91 97 connect(_pppClient, SIGNAL(newMessage(QByteArray,bool)), -
trunk/BNC/bncpostprocess.h
r3685 r3688 36 36 class t_rnxObsFile; 37 37 class t_rnxNavFile; 38 class t_corrFile; 38 39 39 40 class t_postProcessing : public QThread { … … 49 50 void progress(int); 50 51 void finished(); 51 void newEphGPS(gpsephemeris gpseph);52 void newEphGlonass(glonassephemeris glonasseph);53 void newEphGalileo(galileoephemeris galileoeph);54 void newCorrections(QList<QString>);55 52 56 53 public slots: … … 65 62 t_rnxObsFile* _rnxObsFile; 66 63 t_rnxNavFile* _rnxNavFile; 64 t_corrFile* _corrFile; 67 65 }; 68 66 -
trunk/BNC/corrfile.h
r3687 r3688 29 29 #include "bncconst.h" 30 30 31 class t_corrFile { 31 class t_corrFile : public QObject { 32 Q_OBJECT 33 32 34 public: 33 35 t_corrFile(QString fileName); 34 36 ~t_corrFile(); 37 38 signals: 39 void newCorrections(QList<QString>); 35 40 36 41 private:
Note:
See TracChangeset
for help on using the changeset viewer.