Changeset 7240 in ntrip for trunk/BNC/src/pppModel.cpp


Ignore:
Timestamp:
Aug 20, 2015, 9:07:53 AM (9 years ago)
Author:
stuerze
Message:

initial import of ionosphere class

File:
1 edited

Legend:

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

    r6268 r7240  
    384384}
    385385
     386// Constructor
     387///////////////////////////////////////////////////////////////////////////
     388t_iono::t_iono() {
     389  _vTec = 0;
     390}
     391
     392t_iono::~t_iono() {
     393  delete _vTec;
     394}
     395
     396void t_iono::setTecData(const t_vTec* vTec) {
     397   delete _vTec;
     398  _vTec = new t_vTec(*vTec);
     399}
     400
     401double t_iono::vtec() {
     402
     403  return 0.0;
     404}
Note: See TracChangeset for help on using the changeset viewer.