lyx_mirror/src/support/lyxtime.h

35 lines
689 B
C
Raw Normal View History

// -*- 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<EFBFBD>rgen Spitzm<EFBFBD>ller
*
* Full author contact details are available in file CREDITS.
*/
#ifndef LYXTIME_H
#define LYXTIME_H
#include <time.h>
#include <string>
namespace lyx {
typedef time_t time_type;
time_type current_time();
/** Returns a locale-dependent formatting of the date
* <EFBFBD>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);
}; // namespace lyx
#endif // LYXTIME_H