]> git.lyx.org Git - lyx.git/blob - src/tex2lyx/gettext.h
Forgotten files ;-)
[lyx.git] / src / tex2lyx / gettext.h
1 // -*- C++ -*-
2 /**
3  * \file 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 "LString.h"
16
17 ///
18 string const _(string const &);
19
20 #define N_(str) (str)              // for detecting static strings
21
22 ///
23 void locale_init();
24
25 #endif