Changeset 6809 in ntrip for trunk/BNC/src/t_prn.cpp


Ignore:
Timestamp:
Apr 30, 2015, 10:37:30 PM (9 years ago)
Author:
stuerze
Message:

I/NAV - F/NAV issue (hopefully:) solved in another way

File:
1 edited

Legend:

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

    r6321 r6809  
    3636  stringstream ss;
    3737  ss << _system << setfill('0') << setw(2) << _number;
     38  return ss.str();
     39}
     40
     41//
     42//////////////////////////////////////////////////////////////////////////////
     43string t_prn::toInternalString() const {
     44  stringstream ss;
     45  ss << _system << setfill('0') << setw(2) << _number << '_' << _flags;
    3846  return ss.str();
    3947}
Note: See TracChangeset for help on using the changeset viewer.