Rev | Line | |
---|
[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] | 10 | class t_availData;
|
---|
| 11 |
|
---|
[4578] | 12 | class t_availPlot: public QwtPlot {
|
---|
| 13 | Q_OBJECT
|
---|
| 14 |
|
---|
| 15 | public:
|
---|
[6269] | 16 | t_availPlot(QWidget* parent, QMap<t_prn, t_availData>* availDataMap);
|
---|
[4578] | 17 |
|
---|
| 18 | private:
|
---|
[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.