- Timestamp:
- May 5, 2012, 8:10:43 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/rinex/reqcedit.cpp
r4115 r4117 148 148 } 149 149 editRnxObsHeader(outObsFile); 150 bncSettings settings; 150 151 QMap<QString, QString> txtMap; 151 txtMap["RUN BY"] = "BKG"; 152 txtMap["COMMENT"] = "First comment line\nSecond comment line"; 152 QString runBy = settings.value("reqcRunBy").toString(); 153 if (!runBy.isEmpty()) { 154 txtMap["RUN BY"] = runBy; 155 } 156 QString comment = settings.value("reqcComment").toString(); 157 if (!comment.isEmpty()) { 158 txtMap["COMMENT"] = comment; 159 } 153 160 outObsFile.writeHeader(txtMap); 154 161 }
Note:
See TracChangeset
for help on using the changeset viewer.