Changeset 5884 in ntrip


Ignore:
Timestamp:
Aug 8, 2014, 4:04:09 PM (10 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src
Files:
5 edited

Legend:

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

    r5738 r5884  
    4444#include "GPSDecoder.h"
    4545#include "bncsettings.h"
     46#include "bncrinex.h"
    4647
    4748extern "C" {
     
    5556GPSDecoder::GPSDecoder() {
    5657  _rnx = 0;
     58}
     59
     60// Destructor
     61//////////////////////////////////////////////////////////////////////////////
     62GPSDecoder::~GPSDecoder() {
     63  delete _rnx;
    5764}
    5865
  • trunk/BNC/src/GPSDecoder.h

    r5738 r5884  
    2929#include <vector>
    3030#include <string>
    31 #include <QList>
    32 #include <QStringList>
     31
     32#include <QtCore>
    3333
    3434#include "bncconst.h"
    35 #include "bncrinex.h"
     35#include "bnctime.h"
    3636
    3737extern "C" {
    3838#include "rtcm3torinex.h"
    3939}
     40
     41class bncRinex;
    4042
    4143class t_obs {
     
    102104 public:
    103105  GPSDecoder();
    104 
    105   virtual ~GPSDecoder() {delete _rnx;}
     106  virtual ~GPSDecoder();
    106107
    107108  virtual t_irc Decode(char* buffer, int bufLen,
  • trunk/BNC/src/PPP/pppThread.cpp

    r5883 r5884  
    8080    }
    8181    else {
    82       _ppRun->processFiles();
     82      _pppRun->processFiles();
    8383    }
    8484  }
  • trunk/BNC/src/bnccore.h

    r5879 r5884  
    2828#include <QtGui>
    2929
     30#include "bnctime.h"
    3031#include "bnccaster.h"
    3132#include "bncrawfile.h"
  • trunk/BNC/src/rinex/reqcanalyze.cpp

    r5883 r5884  
    238238        const t_rnxObsFile::t_rnxSat& rnxSat = _currEpo->rnxSat[iObs];
    239239        t_obs obs;
    240         setObsFromRnx(obsFile, _currEpo, rnxSat, obs);
     240        t_rnxObsFile::setObsFromRnx(obsFile, _currEpo, rnxSat, obs);
    241241 
    242242        QString prn = QString("%1%2").arg(obs.satSys)
Note: See TracChangeset for help on using the changeset viewer.