]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/frnt_lang.h
ws fixes, formatting and some other small changes
[lyx.git] / src / frontends / controllers / frnt_lang.h
1 // -*- C++ -*-
2 /**
3  * \file frnt_lang.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Angus Leeming
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef FRNT_LANG_H
13 #define FRNT_LANG_H
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "LString.h"
20 #include <utility>
21 #include <vector>
22
23 /** Ease the use of internationalised language strings in the dialogs.
24  */
25 namespace frnt {
26
27 ///
28 typedef std::pair<string, string> LanguagePair;
29
30 /** If the caller is the character dialog, add "No change" and "Reset"
31  *  to the vector.
32  */
33 std::vector<LanguagePair> const getLanguageData(bool character_dlg);
34
35 } // namespace frnt
36
37 #endif // FRNT_LANG_H