00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef QWT_SYSTEM_CLOCK_H
00011 #define QWT_SYSTEM_CLOCK_H
00012
00013 #include "qwt_global.h"
00014
00029 class QWT_EXPORT QwtSystemClock
00030 {
00031 public:
00032 QwtSystemClock();
00033 virtual ~QwtSystemClock();
00034
00035 bool isNull() const;
00036
00037 void start();
00038 double restart();
00039 double elapsed() const;
00040
00041 static double precision();
00042
00043 private:
00044 class PrivateData;
00045 PrivateData *d_data;
00046 };
00047
00048 #endif