#1942 HDF5 reader. Using RiaQDateTimeTools for parts of the reading. See issue comment for more info

This commit is contained in:
Bjørn Erik Jensen
2017-11-30 13:41:33 +01:00
parent c86161a0a6
commit da11a32862
3 changed files with 11 additions and 4 deletions

View File

@@ -72,6 +72,14 @@ QDateTime RiaQDateTimeTools::fromYears(double years)
return RiaQDateTimeTools::addYears(dt, yearsAfterEpoch);
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
QDateTime RiaQDateTimeTools::addMSecs(const QDateTime& dt, double msecs)
{
return dt.addMSecs(msecs);
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------