Changeset 592 in ntrip
- Timestamp:
- Nov 24, 2007, 9:25:35 PM (17 years ago)
- Location:
- trunk/BNC
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncapp.cpp
r591 r592 514 514 // ---------------- 515 515 if (_ephStreamGPS) { 516 *_ephStreamGPS << allLines << endl;516 *_ephStreamGPS << allLines; 517 517 _ephStreamGPS->flush(); 518 518 } … … 580 580 // ---------------- 581 581 if (_ephStreamGlonass) { 582 *_ephStreamGlonass << allLines << endl;582 *_ephStreamGlonass << allLines; 583 583 _ephStreamGlonass->flush(); 584 584 } -
trunk/BNC/bncapp.h
r589 r592 39 39 virtual ~bncApp(); 40 40 QString bncVersion() const {return _bncVersion;} 41 void setPort(int port); 41 42 public slots: 42 43 void slotMessage(const QByteArray msg); -
trunk/BNC/bncmain.cpp
r572 r592 103 103 settings.value("outPort").toInt()); 104 104 105 app.setPort(settings.value("outEphPort").toInt()); 106 105 107 app.connect(caster, SIGNAL(getThreadErrors()), &app, SLOT(quit())); 106 108 app.connect(caster, SIGNAL(newMessage(const QByteArray&)), -
trunk/BNC/bncwindow.cpp
r588 r592 513 513 514 514 _caster = new bncCaster(_outFileLineEdit->text(), 515 _outPortLineEdit->text().toInt()); 515 _outPortLineEdit->text().toInt()); 516 517 ((bncApp*)qApp)->setPort(_outEphPortLineEdit->text().toInt()); 516 518 517 519 connect(_caster, SIGNAL(getThreadErrors()),
Note:
See TracChangeset
for help on using the changeset viewer.