X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fsupport%2Flyxtime.h;h=74586cf7de947264ed07a2beb7cc57486c6bfe5a;hb=faa87bf9f30b943397429a04254d96963bbf38bc;hp=c58c9ab2818b499c119be36d29ad4cc9dad810fe;hpb=0be0fcfd5907d448cd51addf83ed7032719a0692;p=lyx.git diff --git a/src/support/lyxtime.h b/src/support/lyxtime.h index c58c9ab281..74586cf7de 100644 --- a/src/support/lyxtime.h +++ b/src/support/lyxtime.h @@ -5,6 +5,7 @@ * Licence details can be found in the file COPYING. * * \author John Levon + * \author Jürgen Spitzmüller * * Full author contact details are available in file CREDITS. */ @@ -13,13 +14,26 @@ #define LYXTIME_H #include +#include + namespace lyx { +namespace support { + +time_t current_time(); -typedef time_t time_type; +/** 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. + */ +std::string const formatted_time(time_t t, std::string const & fmt); -time_type current_time(); +/** + * Inverse of asctime(gmtime()). + */ +time_t from_asctime_utc(std::string t); -}; // namespace lyx +} // namespace support +} // namespace lyx #endif // LYXTIME_H