Changeset 4480 in ntrip for trunk/BNC/src/rinex/rnxobsfile.cpp


Ignore:
Timestamp:
Aug 3, 2012, 7:16:51 PM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/rinex/rnxobsfile.cpp

    r4233 r4480  
    4848using namespace std;
    4949
    50 const QString t_rnxObsFile::t_rnxObsHeader::_emptyStr;
     50const QString t_rnxObsHeader::_emptyStr;
    5151
    5252// Constructor
    5353////////////////////////////////////////////////////////////////////////////
    54 t_rnxObsFile::t_rnxObsHeader::t_rnxObsHeader() {
     54t_rnxObsHeader::t_rnxObsHeader() {
    5555  _antNEU.ReSize(3); _antNEU = 0.0;
    5656  _antXYZ.ReSize(3); _antXYZ = 0.0;
     
    6767// Destructor
    6868////////////////////////////////////////////////////////////////////////////
    69 t_rnxObsFile::t_rnxObsHeader::~t_rnxObsHeader() {
     69t_rnxObsHeader::~t_rnxObsHeader() {
    7070}
    7171
    7272// Read Header
    7373////////////////////////////////////////////////////////////////////////////
    74 t_irc t_rnxObsFile::t_rnxObsHeader::read(QTextStream* stream, int maxLines) {
     74t_irc t_rnxObsHeader::read(QTextStream* stream, int maxLines) {
    7575  int numLines = 0;
    7676  while ( stream->status() == QTextStream::Ok && !stream->atEnd() ) {
     
    205205// Number of Observation Types (satellite-system specific)
    206206////////////////////////////////////////////////////////////////////////////
    207 int t_rnxObsFile::t_rnxObsHeader::nTypes(char sys) const {
     207int t_rnxObsHeader::nTypes(char sys) const {
    208208  if (_version < 3.0) {
    209209    return _obsTypesV2.size();
     
    221221// Observation Type (satellite-system specific)
    222222////////////////////////////////////////////////////////////////////////////
    223 const QString& t_rnxObsFile::t_rnxObsHeader::obsType(char sys, int index) const {
     223const QString& t_rnxObsHeader::obsType(char sys, int index) const {
    224224  if (_version < 3.0) {
    225225    return _obsTypesV2.at(index);
Note: See TracChangeset for help on using the changeset viewer.