Ignore:
Timestamp:
Aug 18, 2015, 4:13:05 PM (9 years ago)
Author:
stuerze
Message:

some interfaces are added to be able to handle ssr vtec in PPP mode

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP_RTK/pppStation.cpp

    r7227 r7231  
    2626t_pppStation::t_pppStation() {
    2727  _windUp    = new t_windUp();
     28  _vTec = 0;
    2829}
    2930
     
    3233t_pppStation::~t_pppStation() {
    3334  delete _windUp;
     35  delete _vTec;
    3436}
    3537
     
    5759}
    5860
     61//
     62//////////////////////////////////////////////////////////////////////////////
     63void t_pppStation::putTec(t_vTec* vTec) {
     64  delete _vTec;
     65  _vTec = vTec;
     66}
     67
Note: See TracChangeset for help on using the changeset viewer.