mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
5179e2f4d8
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36901 a592a061-630c-0410-9148-cb99ea01b6c8
33 lines
658 B
C++
33 lines
658 B
C++
// -*- C++ -*-
|
||
/**
|
||
* \file lyxtime.h
|
||
* This file is part of LyX, the document processor.
|
||
* 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.
|
||
*/
|
||
|
||
#ifndef LYXTIME_H
|
||
#define LYXTIME_H
|
||
|
||
#include <time.h>
|
||
#include <string>
|
||
|
||
|
||
namespace lyx {
|
||
|
||
time_t 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_t t, std::string const & fmt);
|
||
|
||
} // namespace lyx
|
||
|
||
#endif // LYXTIME_H
|