mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-27 06:19:36 +00:00
159875f201
tex2lyx is no identical with the version in trunk (except for cosmetic changes and file formats > 413). The output of the test cases is either unchanged or improved. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_2_0_X@40364 a592a061-630c-0410-9148-cb99ea01b6c8
43 lines
935 B
C++
43 lines
935 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 {
|
||
namespace support {
|
||
|
||
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);
|
||
|
||
/**
|
||
* 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
|