source: ntrip/trunk/BNC/src/rinex/availplot.h

Last change on this file was 6272, checked in by mervart, 10 years ago
File size: 513 bytes
RevLine 
[4578]1#ifndef AVAILPLOT_H
2#define AVAILPLOT_H
3
4#include <QtCore>
5#include <qwt_plot.h>
[4595]6#include <qwt_symbol.h>
[4610]7#include <qwt_plot_curve.h>
[6269]8#include "t_prn.h"
[6272]9#include "reqcanalyze.h"
[4578]10
11class t_availPlot: public QwtPlot {
12 Q_OBJECT
13
14public:
[6272]15 t_availPlot(QWidget* parent, const QMap<t_prn, t_plotData>& plotDataMap);
[4578]16
17private:
[4613]18 QwtPlotCurve* addCurve(const QString& name, const QwtSymbol& symbol,
[4610]19 const QVector<double>& xData,
20 const QVector<double>& yData);
[4578]21};
22
23#endif
Note: See TracBrowser for help on using the repository browser.