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

Last change on this file since 6269 was 6269, checked in by mervart, 11 years ago
File size: 504 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"
[4578]9
[4584]10class t_availData;
11
[4578]12class t_availPlot: public QwtPlot {
13 Q_OBJECT
14
15public:
[6269]16 t_availPlot(QWidget* parent, QMap<t_prn, t_availData>* availDataMap);
[4578]17
18private:
[4613]19 QwtPlotCurve* addCurve(const QString& name, const QwtSymbol& symbol,
[4610]20 const QVector<double>& xData,
21 const QVector<double>& yData);
[4578]22};
23
24#endif
Note: See TracBrowser for help on using the repository browser.