]> git.lyx.org Git - lyx.git/blob - src/tex2lyx/gettext.h
New nomenclature inset from Ugras
[lyx.git] / src / tex2lyx / gettext.h
1 // -*- C++ -*-
2 /**
3  * \file tex2lyx/gettext.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Lars Gullik Bjønnes
8  * \author Jean-Marc Lasgouttes
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12 #ifndef GETTEXT_H
13 #define GETTEXT_H
14
15 #include <string>
16
17
18 namespace lyx {
19
20
21 ///
22 std::string const _(std::string const &);
23
24 /// for detecting static strings
25 #define N_(str) (str)
26
27 ///
28 void locale_init();
29
30
31 } // namespace lyx
32
33 #endif