Public Member Functions | |
virtual QwtRasterData * | copy () const |
Clone the data. | |
virtual double | value (double, double) const |
virtual QwtDoubleInterval | range () const |
Definition at line 80 of file qwt_plot_spectrogram.cpp.
virtual QwtRasterData* QwtPlotSpectrogram::PrivateData::DummyData::copy | ( | ) | const [inline, virtual] |
Clone the data.
Implements QwtRasterData.
Definition at line 83 of file qwt_plot_spectrogram.cpp.
{ return new DummyData(); }
virtual QwtDoubleInterval QwtPlotSpectrogram::PrivateData::DummyData::range | ( | ) | const [inline, virtual] |
Implements QwtRasterData.
Definition at line 93 of file qwt_plot_spectrogram.cpp.
{ return QwtDoubleInterval(0.0, 1.0); }
virtual double QwtPlotSpectrogram::PrivateData::DummyData::value | ( | double | x, |
double | y | ||
) | const [inline, virtual] |
x | X value in plot coordinates |
y | Y value in plot coordinates |
Implements QwtRasterData.
Definition at line 88 of file qwt_plot_spectrogram.cpp.
{
return 0.0;
}