Changeset 2332 in ntrip
- Timestamp:
- Feb 24, 2010, 5:11:39 PM (15 years ago)
- Location:
- trunk/BNS
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNS/bns.cpp
r2327 r2332 82 82 // Socket and file for outputting the results 83 83 // ------------------------------------------- 84 for (int ic = 1; ic <= 3; ic++) {84 for (int ic = 1; ic <= 6; ic++) { 85 85 QString mountpoint = settings.value(QString("mountpoint_%1").arg(ic)).toString(); 86 86 QString outFileName = settings.value(QString("outFile_%1").arg(ic)).toString(); … … 519 519 if (_caster.at(ic)->ic() == 2) { emit(newOutBytes2(len));} 520 520 if (_caster.at(ic)->ic() == 3) { emit(newOutBytes3(len));} 521 if (_caster.at(ic)->ic() == 4) { emit(newOutBytes4(len));} 522 if (_caster.at(ic)->ic() == 5) { emit(newOutBytes5(len));} 523 if (_caster.at(ic)->ic() == 6) { emit(newOutBytes6(len));} 521 524 _caster.at(ic)->write(obuffer, len); 522 525 } -
trunk/BNS/bns.h
r2046 r2332 46 46 void newOutBytes2(int nBytes); 47 47 void newOutBytes3(int nBytes); 48 void newOutBytes4(int nBytes); 49 void newOutBytes5(int nBytes); 50 void newOutBytes6(int nBytes); 48 51 void newOutEphBytes(int nBytes); 49 52 void newMessage(const QByteArray msg); -
trunk/BNS/bnswindow.cpp
r2327 r2332 1132 1132 connect(_bns, SIGNAL(newOutBytes2(int)), this, SLOT(slotOutBytes2(int))); 1133 1133 connect(_bns, SIGNAL(newOutBytes3(int)), this, SLOT(slotOutBytes3(int))); 1134 connect(_bns, SIGNAL(newOutBytes4(int)), this, SLOT(slotOutBytes4(int))); 1135 connect(_bns, SIGNAL(newOutBytes5(int)), this, SLOT(slotOutBytes5(int))); 1136 connect(_bns, SIGNAL(newOutBytes6(int)), this, SLOT(slotOutBytes6(int))); 1134 1137 connect(_bns, SIGNAL(newOutEphBytes(int)), this, SLOT(slotOutEphBytes(int))); 1135 1138 … … 1154 1157 updateStatus(4, nBytes); 1155 1158 } 1159 void bnsWindow::slotOutBytes4(int nBytes) { 1160 updateStatus(5, nBytes); 1161 } 1162 void bnsWindow::slotOutBytes5(int nBytes) { 1163 updateStatus(6, nBytes); 1164 } 1165 void bnsWindow::slotOutBytes6(int nBytes) { 1166 updateStatus(7, nBytes); 1167 } 1156 1168 void bnsWindow::slotOutEphBytes(int nBytes) { 1157 updateStatus( 5, nBytes);1169 updateStatus(8, nBytes); 1158 1170 } 1159 1171 -
trunk/BNS/bnswindow.h
r2327 r2332 50 50 void slotOutBytes2(int nBytes); 51 51 void slotOutBytes3(int nBytes); 52 void slotOutBytes4(int nBytes); 53 void slotOutBytes5(int nBytes); 54 void slotOutBytes6(int nBytes); 52 55 void slotOutEphBytes(int nBytes); 53 56
Note:
See TracChangeset
for help on using the changeset viewer.