Changeset 847 in ntrip


Ignore:
Timestamp:
Apr 25, 2008, 10:44:23 AM (16 years ago)
Author:
mervart
Message:

* empty log message *

Location:
trunk/BNS
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNS/bns.cpp

    r840 r847  
    2020#include "bns.h"
    2121#include "bnsutils.h"
     22#include "bnsrinex.h"
    2223
    2324using namespace std;
     
    7778      _logStream = new QTextStream(_logFile);
    7879    }
     80  }
     81
     82  // RINEX writer
     83  // ------------
     84  if ( settings.value("rnxPath").toString().isEmpty() ) {
     85    _rnx = 0;
     86  }
     87  else {
     88    _rnx = new bnsRinex();
    7989  }
    8090}
     
    319329    _outSocket->flush();
    320330  }
     331  if (_rnx) {
     332    _rnx->write(GPSweek, GPSweeks, prn, xx);
     333  }
    321334}
    322335
  • trunk/BNS/bns.h

    r836 r847  
    88
    99#include "bnseph.h"
     10
     11class bnsRinex;
    1012
    1113class t_ephPair {
     
    6163  QMutex                    _mutex;
    6264  QMap<QString, t_ephPair*> _ephList;
     65
     66  bnsRinex*                 _rnx;
    6367};
    6468#endif
  • trunk/BNS/bns.pro

    r836 r847  
    2323
    2424HEADERS =             bns.h   bnswindow.h   bnshlpdlg.h   bnshtml.h   \
    25           bnseph.h    bnsutils.h
     25          bnseph.h    bnsutils.h bnsrinex.h
    2626
    2727HEADERS += newmat/controlw.h newmat/include.h newmat/myexcept.h  \
     
    3030
    3131SOURCES = bnsmain.cpp bns.cpp bnswindow.cpp bnshlpdlg.cpp bnshtml.cpp \
    32           bnseph.cpp  bnsutils.cpp
     32          bnseph.cpp  bnsutils.cpp bnsrinex.cpp
    3333
    3434SOURCES += newmat/bandmat.cpp newmat/cholesky.cpp newmat/evalue.cpp  \
Note: See TracChangeset for help on using the changeset viewer.