]> git.sesse.net Git - kdenlive/blob - src/lib/qtimerWithTime.h
Const'ref
[kdenlive] / src / lib / qtimerWithTime.h
1 #ifndef QTIMERWITHTIME_H
2 #define QTIMERWITHTIME_H
3
4 #include <QTimer>
5 #include <QTime>
6
7 class QTimerWithTime : public QTimer
8 {
9     Q_OBJECT
10 public:
11     virtual void start(int msec);
12     int elapsed() const;
13  private:
14     QTime m_time;
15 };
16 #endif