source:
ntrip/trunk/BNC/src/rinex/availplot.h@
4602
| Last change on this file since 4602 was 4595, checked in by , 13 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 | |
| 8 | class t_availData; |
| 9 | |
| 10 | class t_availPlot: public QwtPlot { |
| 11 | Q_OBJECT |
| 12 | |
| 13 | public: |
| 14 | t_availPlot(QWidget* parent, QMap<QString, t_availData>* availDataMap); |
| 15 | |
| 16 | private: |
| 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.
