Changeset 6788 in ntrip
- Timestamp:
- Apr 20, 2015, 6:20:10 PM (10 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/RTCM/RTCM2.cpp
r1105 r6788 292 292 // Get next 30bit word from string 293 293 294 void ThirtyBitWord::get(const st ring& buf) {294 void ThirtyBitWord::get(const std::string& buf) { 295 295 296 296 // Check if string is long enough … … 321 321 // Get next 30bit word from file 322 322 323 void ThirtyBitWord::get( istream& inp) {323 void ThirtyBitWord::get(std::istream& inp) { 324 324 325 325 unsigned char b; … … 342 342 // Get next header word from string 343 343 344 void ThirtyBitWord::getHeader(st ring& buf) {344 void ThirtyBitWord::getHeader(std::string& buf) { 345 345 346 346 const unsigned int wordLen = 5; // Number of bytes representing a 30-bit word … … 381 381 // Get next header word from file 382 382 383 void ThirtyBitWord::getHeader( istream& inp) {383 void ThirtyBitWord::getHeader(std::istream& inp) { 384 384 385 385 unsigned char b; -
trunk/BNC/src/serial/posix_qextserialport.cpp
r1406 r6788 22 22 \fn Posix_QextSerialPort::Posix_QextSerialPort() 23 23 Default constructor. Note that the name of the device used by a QextSerialPort constructed with 24 this constructor will be determined by #defined constants, or lack thereof - the default behavior24 this constructor will be determined by defined constants, or lack thereof - the default behavior 25 25 is the same as _TTY_LINUX_. Possible naming conventions and their associated constants are: 26 26 -
trunk/BNC/src/serial/qextserialport.cpp
r1317 r6788 24 24 \fn QextSerialPort::QextSerialPort() 25 25 Default constructor. Note that the naming convention used by a QextSerialPort constructed with 26 this constructor will be determined by #defined constants, or lack thereof - the default behavior26 this constructor will be determined by defined constants, or lack thereof - the default behavior 27 27 is the same as _TTY_LINUX_. Possible naming conventions and their associated constants are: 28 28 -
trunk/BNC/src/serial/win_qextserialport.cpp
r1317 r6788 24 24 \fn Win_QextSerialPort::Win_QextSerialPort() 25 25 Default constructor. Note that the name of the device used by a Win_QextSerialPort constructed 26 with this constructor will be determined by #defined constants, or lack thereof - the default26 with this constructor will be determined by defined constants, or lack thereof - the default 27 27 behavior is the same as _TTY_LINUX_. Possible naming conventions and their associated constants 28 28 are:
Note:
See TracChangeset
for help on using the changeset viewer.