Changeset 4111 in ntrip for trunk/BNC/upload/bncrtnetdecoder.cpp
- Timestamp:
- May 4, 2012, 5:43:29 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/upload/bncrtnetdecoder.cpp
r3233 r4111 60 60 int outPort = hlp[1].toInt(); 61 61 bool CoM = (hlp[5].toInt() == Qt::Checked); 62 int PID = 0; 63 if (hlp.size() > 8) { 64 PID = hlp[8].toInt(); 65 } 66 int SID = 0; 67 if (hlp.size() > 9) { 68 SID = hlp[9].toInt(); 69 } 70 int IOD = 0; 71 if (hlp.size() > 10) { 72 IOD = hlp[10].toInt(); 73 } 62 74 bncRtnetUploadCaster* newCaster = new bncRtnetUploadCaster( 63 75 hlp[2], hlp[0], outPort, 64 76 hlp[3], hlp[4], CoM, 65 hlp[6], hlp[7], "", iRow); 77 hlp[6], hlp[7], "", 78 PID, SID, IOD, iRow); 66 79 newCaster->start(); 67 80 _casters.push_back(newCaster);
Note:
See TracChangeset
for help on using the changeset viewer.