Files
GoldenCheetah/qwt/examples/tvplot/tvplot.h
Damien c44758c5ad Qwt 6.0.1 Support
Upgrade to QWT 6.0.1, but still uses a locally patched copy
since support for 8 axes has not been included, despite it
being a relatively simple patch.

Fixes #634.
Fixes #567.
2012-02-12 10:43:15 +00:00

20 lines
230 B
C++

#ifndef _TV_PLOT_H_
#include <qwt_plot.h>
class TVPlot: public QwtPlot
{
Q_OBJECT
public:
TVPlot(QWidget * = NULL);
private:
void populate();
private Q_SLOTS:
void showItem(QwtPlotItem *, bool on);
};
#endif