Changeset 7996 in ntrip for trunk/BNC/src/pppModel.h


Ignore:
Timestamp:
Aug 4, 2016, 9:51:01 AM (8 years ago)
Author:
stuerze
Message:

reading of ocean loading files is added

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/pppModel.h

    r7625 r7996  
    4646};
    4747
     48class t_loading {
     49 public:
     50  t_loading(const QString& fileName);
     51  ~t_loading();
     52  t_irc   readFile(const QString& fileName);
     53  void    printAll() const;
     54
     55 private:
     56  class t_blqData {
     57   public:
     58    t_blqData() {}
     59    Matrix amplitudes;
     60    Matrix phases;
     61  };
     62  t_blqData*                 newBlqData;
     63  QMap <QString, t_blqData*> blqMap;
     64
     65};
     66
    4867class t_windUp {
    4968 public:
Note: See TracChangeset for help on using the changeset viewer.