Files
GoldenCheetah/qwt/examples/spectrogram/plot.h
2009-09-20 11:07:49 -07:00

19 lines
291 B
C++

#include <qwt_plot.h>
#include <qwt_plot_spectrogram.h>
class Plot: public QwtPlot
{
Q_OBJECT
public:
Plot(QWidget * = NULL);
public slots:
void showContour(bool on);
void showSpectrogram(bool on);
void printPlot();
private:
QwtPlotSpectrogram *d_spectrogram;
};