Changeset 11007 in ntrip for trunk


Ignore:
Timestamp:
Sep 8, 2026, 10:04:38 PM (3 days ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/satObs.cpp

    r11000 r11007  
    1010// Constructor
    1111////////////////////////////////////////////////////////////////////////////
    12 t_clkCorr::t_clkCorr()
    13 {
     12t_clkCorr::t_clkCorr() {
    1413  _updateInt = 0;
    1514  _iod = 0;
     
    2120//
    2221////////////////////////////////////////////////////////////////////////////
    23 void t_clkCorr::writeEpoch(ostream* out, const QList<t_clkCorr>& corrList)
    24 {
     22void t_clkCorr::writeEpoch(ostream* out, const QList<t_clkCorr>& corrList) {
    2523  if (!out || corrList.size() == 0) {
    2624    return;
     
    4745//
    4846////////////////////////////////////////////////////////////////////////////
    49 void t_clkCorr::readEpoch(const string& epoLine, istream& inStream, QList<t_clkCorr>& corrList)
    50 {
     47void t_clkCorr::readEpoch(const string& epoLine, istream& inStream, QList<t_clkCorr>& corrList) {
    5148  bncTime epoTime;
    5249  unsigned int updateInt;
     
    8380// Constructor
    8481////////////////////////////////////////////////////////////////////////////
    85 t_orbCorr::t_orbCorr()
    86 {
     82t_orbCorr::t_orbCorr() {
    8783  _updateInt = 0;
    8884  _iod = 0;
     
    9793//
    9894////////////////////////////////////////////////////////////////////////////
    99 void t_orbCorr::writeEpoch(ostream* out, const QList<t_orbCorr>& corrList)
    100 {
     95void t_orbCorr::writeEpoch(ostream* out, const QList<t_orbCorr>& corrList) {
    10196  if (!out || corrList.size() == 0) {
    10297    return;
     
    127122//
    128123////////////////////////////////////////////////////////////////////////////
    129 void t_orbCorr::readEpoch(const string& epoLine, istream& inStream, QList<t_orbCorr>& corrList)
    130 {
     124void t_orbCorr::readEpoch(const string& epoLine, istream& inStream, QList<t_orbCorr>& corrList) {
    131125  bncTime epoTime;
    132126  unsigned int updateInt;
     
    176170// Constructor
    177171////////////////////////////////////////////////////////////////////////////
    178 t_URA::t_URA()
    179 {
     172t_URA::t_URA() {
    180173  _updateInt = 0;
    181174  _iod = 0;
     
    185178//
    186179////////////////////////////////////////////////////////////////////////////
    187 void t_URA::writeEpoch(ostream* out, const QList<t_URA>& corrList)
    188 {
     180void t_URA::writeEpoch(ostream* out, const QList<t_URA>& corrList) {
    189181  if (!out || corrList.size() == 0) {
    190182    return;
     
    209201//
    210202////////////////////////////////////////////////////////////////////////////
    211 void t_URA::readEpoch(const string& epoLine, istream& inStream, QList<t_URA>& corrList)
    212 {
     203void t_URA::readEpoch(const string& epoLine, istream& inStream, QList<t_URA>& corrList) {
    213204  bncTime epoTime;
    214205  unsigned int updateInt;
     
    241232//
    242233////////////////////////////////////////////////////////////////////////////
    243 void t_satCodeBias::writeEpoch(ostream* out, const QList<t_satCodeBias>& biasList)
    244 {
     234void t_satCodeBias::writeEpoch(ostream* out, const QList<t_satCodeBias>& biasList) {
    245235  if (!out || biasList.size() == 0) {
    246236    return;
     
    270260//
    271261////////////////////////////////////////////////////////////////////////////
    272 void t_satCodeBias::readEpoch(const string& epoLine, istream& inStream, QList<t_satCodeBias>& biasList)
    273 {
     262void t_satCodeBias::readEpoch(const string& epoLine, istream& inStream, QList<t_satCodeBias>& biasList) {
    274263  bncTime epoTime;
    275264  unsigned int updateInt;
     
    311300//
    312301////////////////////////////////////////////////////////////////////////////
    313 void t_satPhaseBias::writeEpoch(ostream* out, const QList<t_satPhaseBias>& biasList)
    314 {
     302void t_satPhaseBias::writeEpoch(ostream* out, const QList<t_satPhaseBias>& biasList) {
    315303  if (!out || biasList.size() == 0) {
    316304    return;
     
    374362//
    375363////////////////////////////////////////////////////////////////////////////
    376 void t_satPhaseBias::readEpoch(const string& epoLine, istream& inStream, QList<t_satPhaseBias>& biasList)
    377 {
     364void t_satPhaseBias::readEpoch(const string& epoLine, istream& inStream, QList<t_satPhaseBias>& biasList) {
    378365  bncTime epoTime;
    379366  unsigned int updateInt;
     
    439426//
    440427////////////////////////////////////////////////////////////////////////////
    441 void t_vTec::write(ostream* out, const t_vTec& vTec)
    442 {
     428void t_vTec::write(ostream* out, const t_vTec& vTec) {
    443429  if (!out || vTec._layers.size() == 0) {
    444430    return;
     
    463449//
    464450////////////////////////////////////////////////////////////////////////////
    465 void t_vTec::read(const string& epoLine, istream& inStream, t_vTec& vTec)
    466 {
     451void t_vTec::read(const string& epoLine, istream& inStream, t_vTec& vTec) {
    467452  bncTime epoTime;
    468453  unsigned int updateInt;
     
    510495t_corrSSR::e_type t_corrSSR::readEpoLine(const string& line, bncTime& epoTime,
    511496  unsigned int& updateInt, int& numEntries,
    512   string& staID)
    513 {
     497  string& staID) {
    514498
    515499  istringstream inLine(line.c_str());
     
    549533// Set NAV type to force NAVtype usage according SSR standard
    550534/////////////////////////////////////////////////////////////
    551 t_eph::e_type t_corrSSR::getSsrNavTypeFlag(char sys, int num)
    552 {
     535t_eph::e_type t_corrSSR::getSsrNavTypeFlag(char sys, int num) {
    553536
    554537  t_eph::e_type flag = t_eph::undefined;
Note: See TracChangeset for help on using the changeset viewer.