Changeset 6482 in ntrip for trunk


Ignore:
Timestamp:
Dec 28, 2014, 4:40:38 PM (9 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/satObs.cpp

    r6481 r6482  
    128128void t_satPhaseBias::readEpoch(const QStringList& lines, QList<t_satPhaseBias>& biasList) {
    129129}
     130
     131//
     132////////////////////////////////////////////////////////////////////////////
     133void t_vTec::write(std::ostream* out, const t_vTec& vTec) {
     134
     135}
     136
     137//
     138////////////////////////////////////////////////////////////////////////////
     139void t_vTec::read(const QStringList& lines, t_vTec& vTec) {
     140}
  • trunk/BNC/src/satObs.h

    r6481 r6482  
    137137};
    138138
     139class t_vTecLayer {
     140 public:
     141  double _height;
     142  Matrix _C;
     143  Matrix _S;
     144};
     145
     146class t_vTec {
     147 public:
     148  static void write(std::ostream* out, const t_vTec& vTec);
     149  static void read(const QStringList& lines, t_vTec& vTec);
     150  std::string              _staID;
     151  bncTime                  _time;
     152  std::vector<t_vTecLayer> _layers;
     153};
     154
    139155#endif
Note: See TracChangeset for help on using the changeset viewer.