X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fsupport%2Flyxtime.h;h=620965aebc46ceb9d484275e385c363aa3985348;hb=0a9735c5f7bbbaa24ac2e3e4fa745c6dfbc95a18;hp=94d55e89e3f6a458cec8e66b835921f596b93b52;hpb=f1cba8ff64b369792fd49f5ddf90e8126ab476ac;p=lyx.git diff --git a/src/support/lyxtime.h b/src/support/lyxtime.h index 94d55e89e3..620965aebc 100644 --- a/src/support/lyxtime.h +++ b/src/support/lyxtime.h @@ -18,6 +18,7 @@ namespace lyx { +namespace support { time_t current_time(); @@ -27,6 +28,15 @@ time_t current_time(); */ std::string const formatted_time(time_t t, std::string const & fmt); -}; // namespace lyx +/** + * Inverse of ctime(). + * Since ctime() outputs the local time, the caller needs to ensure that the + * time zone and daylight saving time are the same as when \p t was created + * by ctime(). + */ +time_t from_ctime(std::string t); + +} // namespace support +} // namespace lyx #endif // LYXTIME_H