]> git.sesse.net Git - kdenlive/blob - src/lib/qtimerWithTime.cpp
includemocs
[kdenlive] / src / lib / qtimerWithTime.cpp
1 #include "qtimerWithTime.h"
2
3 void QTimerWithTime::start(int msec)
4 {
5     QTimer::start(msec);
6     m_time.start();
7 }
8
9 int QTimerWithTime::elapsed() const
10 {
11     return m_time.elapsed();
12 }
13
14 #include "qtimerWithTime.moc"