source: ntrip/branches/BNC_2.12/src/rinex/availplot.h

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