Changeset 2014 in ntrip


Ignore:
Timestamp:
Nov 25, 2009, 1:06:33 PM (14 years ago)
Author:
mervart
Message:

* empty log message *

Location:
trunk/BNS
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNS/bns.pro

    r1838 r2014  
    2828# Include Path
    2929# ------------
    30 INCLUDEPATH = . ./newmat
     30INCLUDEPATH = . ./newmat ./RTCM
    3131
    3232HEADERS =             bns.h   bnswindow.h   bnshlpdlg.h   bnshtml.h   \
  • trunk/BNS/bnseph.cpp

    r1923 r2014  
    2020#include "bnsutils.h"
    2121#include "bnssettings.h"
     22extern "C" {
     23#include "rtcm3torinex.h"
     24}
    2225
    2326#define PI          3.1415926535898
     
    184187    return false;
    185188  }
     189}
     190
     191// Constructor
     192////////////////////////////////////////////////////////////////////////////
     193t_ephGPS::t_ephGPS(const gpsephemeris& eph) {
     194
    186195}
    187196
     
    476485
    477486  vv(3)  = sini    *doty  + yp*cosi      *doti;
     487}
     488
     489// Constructor
     490////////////////////////////////////////////////////////////////////////////
     491t_ephGlo::t_ephGlo(const glonassephemeris& eph) {
     492
    478493}
    479494
  • trunk/BNS/bnseph.h

    r1867 r2014  
    99#include <QtNetwork>
    1010
     11struct glonassephemeris;
     12struct gpsephemeris;
    1113
    1214class t_eph {
     
    3436    _xv.ReSize(6);
    3537  };
     38  t_ephGlo(const glonassephemeris& eph);
     39
    3640  virtual ~t_ephGlo() {};
    3741  virtual void read(const QStringList& lines);
     
    6771 public:
    6872  t_ephGPS() {};
     73  t_ephGPS(const gpsephemeris& eph);
    6974  virtual ~t_ephGPS() {};
    7075  virtual void read(const QStringList& lines);
Note: See TracChangeset for help on using the changeset viewer.