]> git.lyx.org Git - lyx.git/blobdiff - src/support/lyxtime.h
fix compiler warnings about unused parameter
[lyx.git] / src / support / lyxtime.h
index 5af9a547c6ea7a0113f024416478019b886f8118..71d62fcee94b46921529e663a764ee9536e3681d 100644 (file)
@@ -5,14 +5,17 @@
  * 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 {
 
@@ -20,6 +23,18 @@ 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);
+
+/** Returns a locale-dependent formatting of the date
+ *  and time encoded in \c time. For the formatting,
+ *  \c lyxrc.date_insert_format is being used.
+ */
+std::string const formatted_time(time_type t);
+
 }; // namespace lyx
 
 #endif // LYXTIME_H