##// END OF EJS Templates
Shows min x-axis data in Variable widget (1)...
Shows min x-axis data in Variable widget (1) Creates min() method that returns the iterator on the first value that is >= than the value passed in parameter + implements unit tests

File last commit:

r487:ff7ed2ba3c52
r599:72b3a7366e6c
Show More
DateUtils.cpp
13 lines | 383 B | text/x-c | CppLexer
Alexandre Leroux
Creates DateUtils to convert datetime to secs and secs to datetime
r487 #include "Common/DateUtils.h"
QDateTime DateUtils::dateTime(double secs, Qt::TimeSpec timeSpec) noexcept
{
// Uses msecs to be Qt 4 compatible
return QDateTime::fromMSecsSinceEpoch(secs * 1000., timeSpec);
}
double DateUtils::secondsSinceEpoch(const QDateTime &dateTime) noexcept
{
// Uses msecs to be Qt 4 compatible
return dateTime.toMSecsSinceEpoch() / 1000.;
}