Changeset 8557 in ntrip for trunk/BNC/src/rinex/reqcanalyze.h


Ignore:
Timestamp:
Dec 12, 2018, 3:16:09 PM (5 years ago)
Author:
mervart
Message:

Analyze more than two signals

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/rinex/reqcanalyze.h

    r8555 r8557  
    3131#include "ephemeris.h"
    3232#include "satObs.h"
    33 
    34 class t_polarPoint;
     33#include "polarplot.h"
    3534
    3635class t_plotData {
     
    5857  ~t_reqcAnalyze();
    5958
     59  class t_skyPlotData {
     60   public:
     61    t_skyPlotData() {}
     62    ~t_skyPlotData() {}
     63    void clear() {
     64      for (int ii = 0; ii < _data.size(); ii++) {
     65        delete _data.at(ii);
     66      }
     67    }
     68    QString                _title;
     69    QVector<t_polarPoint*> _data;
     70  };
     71
    6072 signals:
    6173  void finished();
    62   void dspSkyPlot(const QString&, const QString&, QVector<t_polarPoint*>*,
    63                   const QString&, QVector<t_polarPoint*>*, const QByteArray&, double);
     74  void dspSkyPlot(const QString&, QVector<t_skyPlotData> skyPlotData,
     75                  const QByteArray&, double);
    6476  void dspAvailPlot(const QString&, const QByteArray&);
    6577
     
    158170
    159171 private slots:
    160   void   slotDspSkyPlot(const QString& fileName, const QString& title1,
    161                     QVector<t_polarPoint*>* data1, const QString& title2,
    162                     QVector<t_polarPoint*>* data2, const QByteArray& scaleTitle, double maxValue);
     172  void   slotDspSkyPlot(const QString& fileName, QVector<t_skyPlotData> skyPlotData,
     173                        const QByteArray& scaleTitle, double maxValue);
    163174
    164175  void   slotDspAvailPlot(const QString& fileName, const QByteArray& title);
Note: See TracChangeset for help on using the changeset viewer.