Legend:
- Unmodified
- Added
- Removed
-
trunk/BNS/bns.pro
r1838 r2014 28 28 # Include Path 29 29 # ------------ 30 INCLUDEPATH = . ./newmat 30 INCLUDEPATH = . ./newmat ./RTCM 31 31 32 32 HEADERS = bns.h bnswindow.h bnshlpdlg.h bnshtml.h \ -
trunk/BNS/bnseph.cpp
r1923 r2014 20 20 #include "bnsutils.h" 21 21 #include "bnssettings.h" 22 extern "C" { 23 #include "rtcm3torinex.h" 24 } 22 25 23 26 #define PI 3.1415926535898 … … 184 187 return false; 185 188 } 189 } 190 191 // Constructor 192 //////////////////////////////////////////////////////////////////////////// 193 t_ephGPS::t_ephGPS(const gpsephemeris& eph) { 194 186 195 } 187 196 … … 476 485 477 486 vv(3) = sini *doty + yp*cosi *doti; 487 } 488 489 // Constructor 490 //////////////////////////////////////////////////////////////////////////// 491 t_ephGlo::t_ephGlo(const glonassephemeris& eph) { 492 478 493 } 479 494 -
trunk/BNS/bnseph.h
r1867 r2014 9 9 #include <QtNetwork> 10 10 11 struct glonassephemeris; 12 struct gpsephemeris; 11 13 12 14 class t_eph { … … 34 36 _xv.ReSize(6); 35 37 }; 38 t_ephGlo(const glonassephemeris& eph); 39 36 40 virtual ~t_ephGlo() {}; 37 41 virtual void read(const QStringList& lines); … … 67 71 public: 68 72 t_ephGPS() {}; 73 t_ephGPS(const gpsephemeris& eph); 69 74 virtual ~t_ephGPS() {}; 70 75 virtual void read(const QStringList& lines);
Note:
See TracChangeset
for help on using the changeset viewer.