This commit was manufactured by cvs2svn to create tag 'lyx-1_3_7'.
[lyx.git] / src / frontends / controllers / frnt_lang.h
blob09d916e565b02ea4726d037f62ff403224794d91
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.
7 * \author Angus Leeming
9 * Full author contact details are available in file CREDITS
12 #ifndef FRNT_LANG_H
13 #define FRNT_LANG_H
15 #include "LString.h"
16 #include <utility>
17 #include <vector>
19 /** Ease the use of internationalised language strings in the dialogs.
21 namespace frnt {
23 ///
24 typedef std::pair<string, string> LanguagePair;
26 /** If the caller is the character dialog, add "No change" and "Reset"
27 * to the vector.
29 std::vector<LanguagePair> const getLanguageData(bool character_dlg);
31 } // namespace frnt
33 #endif // FRNT_LANG_H