Changeset 848 in ntrip


Ignore:
Timestamp:
Apr 25, 2008, 10:52:22 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

    r847 r848  
    2121#include "bnsutils.h"
    2222#include "bnsrinex.h"
     23#include "bnssp3.h"
    2324
    2425using namespace std;
     
    8788  else {
    8889    _rnx = new bnsRinex();
     90  }
     91
     92  // SP3 writer
     93  // ----------
     94  if ( settings.value("sp3Path").toString().isEmpty() ) {
     95    _sp3 = 0;
     96  }
     97  else {
     98    _sp3 = new bnsSP3();
    8999  }
    90100}
     
    332342    _rnx->write(GPSweek, GPSweeks, prn, xx);
    333343  }
     344  if (_sp3) {
     345    _sp3->write(GPSweek, GPSweeks, prn, xx);
     346  }
    334347}
    335348
  • trunk/BNS/bns.h

    r847 r848  
    1010
    1111class bnsRinex;
     12class bnsSP3;
    1213
    1314class t_ephPair {
     
    6364  QMutex                    _mutex;
    6465  QMap<QString, t_ephPair*> _ephList;
    65 
    6666  bnsRinex*                 _rnx;
     67  bnsSP3*                   _sp3;
    6768};
    6869#endif
  • trunk/BNS/bns.pro

    r847 r848  
    2323
    2424HEADERS =             bns.h   bnswindow.h   bnshlpdlg.h   bnshtml.h   \
    25           bnseph.h    bnsutils.h bnsrinex.h
     25          bnseph.h    bnsutils.h bnsrinex.h bnssp3.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 bnsrinex.cpp
     32          bnseph.cpp  bnsutils.cpp bnsrinex.cpp bnssp3.cpp
    3333
    3434SOURCES += newmat/bandmat.cpp newmat/cholesky.cpp newmat/evalue.cpp  \
Note: See TracChangeset for help on using the changeset viewer.