Go to the documentation of this file.00001 #ifndef PLOT_DATE_TIME_SCALE_H
00002 #define PLOT_DATE_TIME_SCALE_H
00003
00004 #include <QDateTime>
00005
00006 #include <qwt_scale_draw.h>
00007
00008 class PlotDateTimeScale : public QwtScaleDraw
00009 {
00010
00011
00012
00013 public:
00014 PlotDateTimeScale( const QDateTime &dateTime );
00015 virtual ~PlotDateTimeScale();
00016
00017
00018
00019
00020 public:
00021 virtual QwtText label( double value ) const;
00022
00023
00024
00025
00026 private:
00027 QDateTime m_baseDateTime;
00028 };
00029
00030 #endif