mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
26 lines
406 B
C
26 lines
406 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
|
||
|
*
|
||
|
* Full author contact details are available in file CREDITS
|
||
|
*/
|
||
|
|
||
|
#ifndef LYXTIME_H
|
||
|
#define LYXTIME_H
|
||
|
|
||
|
#include <time.h>
|
||
|
|
||
|
namespace lyx {
|
||
|
|
||
|
typedef time_t time_type;
|
||
|
|
||
|
time_type current_time();
|
||
|
|
||
|
}; // namespace lyx
|
||
|
|
||
|
#endif // LYXTIME_H
|