Changeset 848 in ntrip for trunk/BNS/bns.cpp


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

* empty log message *

File:
1 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
Note: See TracChangeset for help on using the changeset viewer.