]> git.lyx.org Git - lyx.git/blobdiff - src/support/lyxtime.h
* layouttranslations.review - remove dupes
[lyx.git] / src / support / lyxtime.h
index 5af9a547c6ea7a0113f024416478019b886f8118..74586cf7de947264ed07a2beb7cc57486c6bfe5a 100644 (file)
@@ -5,21 +5,35 @@
  * 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
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef LYXTIME_H
 #define LYXTIME_H
 
 #include <time.h>
+#include <string>
+
 
 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