##// END OF EJS Templates
Implements spectrograms display (3)...
Implements spectrograms display (3) Implements the method to set y range of the colormap. Unlike scalars/vectors, we don't use bounds of values but bounds of y-axis

File last commit:

r487:ff7ed2ba3c52
r907:b4b8a9876f21
Show More
DateUtils.cpp
13 lines | 383 B | text/x-c | CppLexer
#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.;
}