X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fsupport%2Flyxtime.h;h=8fa58733fb6eb044d13c33b8ee05c48dea7b7341;hb=bf56e2c8e1afa857cd5e313c19948040e41b8227;hp=94d55e89e3f6a458cec8e66b835921f596b93b52;hpb=f1cba8ff64b369792fd49f5ddf90e8126ab476ac;p=lyx.git diff --git a/src/support/lyxtime.h b/src/support/lyxtime.h index 94d55e89e3..8fa58733fb 100644 --- a/src/support/lyxtime.h +++ b/src/support/lyxtime.h @@ -16,17 +16,34 @@ #include #include +#include "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. + * Prefer the function formatted_datetime below. */ std::string const formatted_time(time_t t, std::string const & fmt); -}; // namespace lyx +/** 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()). + */ +time_t from_asctime_utc(std::string t); + +} // namespace support +} // namespace lyx #endif // LYXTIME_H