X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fsupport%2Flyxtime.h;h=05cbc508411be0e8cec72cf05ff75b29bb874c78;hb=1410eeb10e4ce1549ce381ab7ae85847c442c41f;hp=147d3d6b6dfb022e93920eafe5266a233ee6633e;hpb=06d65218c0cbde21060257cc565d60476635eb1c;p=lyx.git diff --git a/src/support/lyxtime.h b/src/support/lyxtime.h index 147d3d6b6d..05cbc50841 100644 --- a/src/support/lyxtime.h +++ b/src/support/lyxtime.h @@ -5,7 +5,7 @@ * Licence details can be found in the file COPYING. * * \author John Levon - * \author Jürgen Spitzmüller + * \author Jürgen Spitzmüller * * Full author contact details are available in file CREDITS. */ @@ -16,17 +16,27 @@ #include #include +#include "support/strfwd.h" + namespace lyx { +namespace support { time_t current_time(); -/** Returns a locale-dependent formatting of the date - *  and time encoded in \c time. The \p fmt string - * holds the formatting arguments of \c strftime. +/** Returns a locale-dependent formatting of the date and time encoded in \c t + * The \p fmt string holds the formatting arguments of QDateTime::toString(). + * If fmt is empty then the formatting of the date and time is itself according + * to the locale. + */ +docstring formatted_datetime(time_t t, std::string const & fmt = ""); + +/** + * Inverse of asctime(gmtime()). */ -std::string const formatted_time(time_t t, std::string const & fmt); +time_t from_asctime_utc(std::string t); -}; // namespace lyx +} // namespace support +} // namespace lyx #endif // LYXTIME_H