mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
23 lines
349 B
C++
23 lines
349 B
C++
|
/**
|
||
|
* \file lyxtime.C
|
||
|
* This file is part of LyX, the document processor.
|
||
|
* Licence details can be found in the file COPYING.
|
||
|
*
|
||
|
* \author John Levon
|
||
|
*
|
||
|
* Full author contact details are available in file CREDITS
|
||
|
*/
|
||
|
|
||
|
#include <config.h>
|
||
|
|
||
|
#include "lyxtime.h"
|
||
|
|
||
|
namespace lyx {
|
||
|
|
||
|
time_type current_time()
|
||
|
{
|
||
|
return time(0);
|
||
|
}
|
||
|
|
||
|
} // namespace lyx
|