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

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