QGC.h 366 Bytes
Newer Older
1 2 3
#ifndef QGC_H
#define QGC_H

4
#include <QDateTime>
5 6 7 8
#include <QColor>

namespace QGC
{
9 10 11
    const QColor colorCyan(55, 154, 195);
    const QColor colorRed(154, 20, 20);
    const QColor colorGreen(20, 200, 20);
pixhawk's avatar
pixhawk committed
12
    const QColor colorYellow(195, 154, 55);
13

pixhawk's avatar
pixhawk committed
14 15
    /** @brief Get the current ground time in microseconds */
    quint64 groundTimeUsecs();
16 17 18
}

#endif // QGC_H