]> git.lyx.org Git - lyx.git/blob - src/support/userinfo.h
Fixup commit 50060053
[lyx.git] / src / support / userinfo.h
1 // -*- C++ -*-
2 /**
3  * \file userinfo.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author John Levon
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef USERINFO_H
13 #define USERINFO_H
14
15 #include "support/strfwd.h"
16
17
18 namespace lyx {
19 namespace support {
20
21 /// return the current user's real name or user name
22 docstring const user_name();
23
24 /// return the current user's e-mail address
25 docstring const user_email();
26
27 } // namespace support
28 } // namespace lyx
29
30 #endif // USERINFO_H