Changeset 6175 in ntrip


Ignore:
Timestamp:
Sep 14, 2014, 2:17:38 PM (10 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/RTCM3/RTCM3coDecoder.cpp

    r6142 r6175  
    349349    while (itOrb.hasNext()) {
    350350      const t_orbCorr& orbCorr = itOrb.next();
    351       *_out << "O " << orbCorr.toString() << endl;
     351      *_out << orbCorr.toLine() << endl;
    352352    }
    353353    QListIterator<t_clkCorr> itClk(clkCorrections);
    354354    while (itClk.hasNext()) {
    355355      const t_clkCorr& clkCorr = itClk.next();
    356       *_out << "C " << clkCorr.toString() << endl;
     356      *_out << clkCorr.toLine() << endl;
    357357    }
    358358    _out->flush();
  • trunk/BNC/src/bnccore.cpp

    r6151 r6175  
    640640        QTcpSocket* sock = is.next();
    641641        if (sock->state() == QAbstractSocket::ConnectedState) {
    642           if (sock->write(corr.toString().c_str()) == -1) {
     642          if (sock->write(corr.toLine().c_str()) == -1) {
    643643            delete sock;
    644644            is.remove();
     
    667667        QTcpSocket* sock = is.next();
    668668        if (sock->state() == QAbstractSocket::ConnectedState) {
    669           if (sock->write(corr.toString().c_str()) == -1) {
     669          if (sock->write(corr.toLine().c_str()) == -1) {
    670670            delete sock;
    671671            is.remove();
  • trunk/BNC/src/satObs.cpp

    r6160 r6175  
    1515//
    1616////////////////////////////////////////////////////////////////////////////
    17 t_clkCorr::t_clkCorr(const string& str) {
     17t_clkCorr::t_clkCorr(const string& line) {
    1818}
    1919
    2020//
    2121////////////////////////////////////////////////////////////////////////////
    22 string t_clkCorr::toString() const {
     22string t_clkCorr::toLine() const {
    2323  return "CLK";
    2424}
     
    3535//
    3636////////////////////////////////////////////////////////////////////////////
    37 t_orbCorr::t_orbCorr(const string& str) {
     37t_orbCorr::t_orbCorr(const string& line) {
    3838}
    3939
    4040//
    4141////////////////////////////////////////////////////////////////////////////
    42 string t_orbCorr::toString() const {
     42string t_orbCorr::toLine() const {
    4343  return "ORB";
    4444}
  • trunk/BNC/src/satObs.h

    r6158 r6175  
    6060 public:
    6161  t_orbCorr();
    62   t_orbCorr(const std::string& str);
     62  t_orbCorr(const std::string& line);
    6363  t_prn          prn() const {return _prn;}
    6464  unsigned short IOD() const {return _iod;}
    65   std::string    toString() const;
     65  std::string    toLine() const;
    6666  std::string    _staID;
    6767  t_prn          _prn;
     
    7676 public:
    7777  t_clkCorr();
    78   t_clkCorr(const std::string& str);
     78  t_clkCorr(const std::string& line);
    7979  t_prn          prn() const {return _prn;}
    8080  unsigned short IOD() const {return _iod;}
    81   std::string    toString() const;
     81  std::string    toLine() const;
    8282  std::string    _staID;
    8383  t_prn          _prn;
Note: See TracChangeset for help on using the changeset viewer.