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

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