3 changed files with 35 additions and 7 deletions
@ -1,11 +1,21 @@ |
|||||||
#ifndef QGC_H |
#ifndef QGC_H |
||||||
#define QGC_H |
#define QGC_H |
||||||
|
|
||||||
|
#include <QDateTime> |
||||||
#include <QColor> |
#include <QColor> |
||||||
|
|
||||||
namespace QGC |
namespace QGC |
||||||
{ |
{ |
||||||
const QColor ColorCyan(55, 154, 195); |
const QColor ColorCyan(55, 154, 195); |
||||||
|
|
||||||
|
quint64 groundTimeUsecs() |
||||||
|
{ |
||||||
|
QDateTime time = QDateTime::currentDateTime(); |
||||||
|
time = time.toUTC(); |
||||||
|
/* Return seconds and milliseconds, in milliseconds unit */ |
||||||
|
quint64 microseconds = time.toTime_t() * static_cast<quint64>(1000000); |
||||||
|
return static_cast<quint64>(microseconds + (time.time().msec()*1000)); |
||||||
|
} |
||||||
} |
} |
||||||
|
|
||||||
#endif // QGC_H
|
#endif // QGC_H
|
||||||
|
Loading…
Reference in new issue