]> git.lyx.org Git - lyx.git/blobdiff - src/support/lyxtime.h
Fixed some lines that were too long. It compiled afterwards.
[lyx.git] / src / support / lyxtime.h
index c58c9ab2818b499c119be36d29ad4cc9dad810fe..a84e391bfe4019059db581785906d3a3e1314f74 100644 (file)
@@ -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,6 +14,8 @@
 #define LYXTIME_H
 
 #include <time.h>
+#include <string>
+
 
 namespace lyx {
 
@@ -20,6 +23,12 @@ typedef time_t time_type;
 
 time_type 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.
+ */
+std::string const formatted_time(time_type t, std::string const & fmt);
+
 }; // namespace lyx
 
 #endif // LYXTIME_H