QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
OnboardLogFtpEntry.cc
Go to the documentation of this file.
2#include "QGCFormat.h"
4
5QGC_LOGGING_CATEGORY(OnboardLogFtpEntryLog, "AnalyzeView.QGCOnboardLogFtpEntry")
6
7QGCOnboardLogFtpEntry::QGCOnboardLogFtpEntry(uint logId, const QDateTime &dateTime, uint logSize, bool received, QObject *parent)
8 : QObject(parent)
9 , _logID(logId)
10 , _logSize(logSize)
11 , _logTimeUTC(dateTime)
12 , _received(received)
13{
14}
15
19
21{
22 return QGC::bigSizeToString(_logSize);
23}
#define QGC_LOGGING_CATEGORY(name, categoryStr)
QString bigSizeToString(quint64 size)
Byte size with unit: B, KB, MB, GB, TB. 1 fractional digit above 1 KB.
Definition QGCFormat.cc:20