- Timestamp:
- Oct 18, 2007, 3:37:06 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncapp.cpp
r527 r528 191 191 void bncApp::printEphHeader() { 192 192 if (_ephStream) { 193 *_ephStream << QDate::currentDate().toString("yy-MM-dd ").toAscii().data(); 194 *_ephStream << QTime::currentTime().toString("hh:mm:ss ").toAscii().data(); 193 QString line; 194 195 line.sprintf( 196 "%9.2f%11sN: GNSS NAV DATA M: Mixed%12sRINEX VERSION / TYPE\n", 197 3.0, "", ""); 198 *_ephStream << line; 199 200 line.sprintf("%s\n%60sEND OF HEADER\n", "bnc", ""); 201 *_ephStream << line; 202 195 203 _ephStream->flush(); 196 204 }
Note:
See TracChangeset
for help on using the changeset viewer.