2003-02-08 19:18:01 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file userinfo.h
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author John Levon
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2003-02-08 19:18:01 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef USERINFO_H
|
|
|
|
#define USERINFO_H
|
|
|
|
|
2007-10-31 22:40:34 +00:00
|
|
|
#include "support/strfwd.h"
|
2003-10-06 15:43:21 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
|
|
|
|
namespace lyx {
|
2003-06-30 23:56:22 +00:00
|
|
|
namespace support {
|
2003-02-08 19:18:01 +00:00
|
|
|
|
|
|
|
/// return the current user's real name
|
2006-12-22 10:26:52 +00:00
|
|
|
docstring const user_name();
|
2003-02-08 19:18:01 +00:00
|
|
|
|
|
|
|
/// return the current user's e-mail address
|
2006-12-22 10:26:52 +00:00
|
|
|
docstring const user_email();
|
2003-02-08 19:18:01 +00:00
|
|
|
|
2003-06-30 23:56:22 +00:00
|
|
|
} // namespace support
|
|
|
|
} // namespace lyx
|
2003-02-08 19:18:01 +00:00
|
|
|
|
|
|
|
#endif // USERINFO_H
|