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