Changeset 850 in ntrip for trunk/BNS/bnsrinex.cpp


Ignore:
Timestamp:
Apr 25, 2008, 12:17:27 PM (16 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNS/bnsrinex.cpp

    r847 r850  
    2424// Constructor
    2525////////////////////////////////////////////////////////////////////////////
    26 bnsRinex::bnsRinex() {
     26bnsRinex::bnsRinex(const QString& prep, const QString& ext, const QString& path,
     27               const QString& intr, int sampl)
     28  : bnsoutf(prep, ext, path, intr, sampl) {
    2729}
    2830
     
    3234}
    3335
    34 //
     36// Write Header
     37////////////////////////////////////////////////////////////////////////////
     38void bnsRinex::writeHeader(const QDateTime& datTim) {
     39  _out << "THIS IS A DUMMY HEADER" << endl;
     40}
     41
     42// Write One Epoch
    3543////////////////////////////////////////////////////////////////////////////
    3644void bnsRinex::write(int GPSweek, double GPSweeks, const QString& prn,
    37                      const ColumnVector& xx) {
     45                   const ColumnVector& xx) {
     46
     47  bnsoutf::write(GPSweek, GPSweeks, prn, xx);
     48
    3849}
Note: See TracChangeset for help on using the changeset viewer.