]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/frnt_lang.h
5a636d4c10f76124588db4de910d28862a3e7e54
[lyx.git] / src / frontends / controllers / frnt_lang.h
1 // -*- C++ -*-
2 /*
3  * \file frnt_lang.h
4  * Copyright 2002 the LyX Team
5  * Read the file COPYING
6  *
7  * \author Angus Leeming, a.leeming@ic.ac.uk
8  */
9
10 #ifndef FRNT_LANG_H
11 #define FRNT_LANG_H
12
13 #ifdef __GNUG__
14 #pragma interface
15 #endif
16
17 #include "LString.h"
18 #include <utility>
19 #include <vector>
20
21 /** Ease the use of internationalised language strings in the dialogs.
22  */
23 namespace frnt {
24         ///
25         typedef std::pair<string, string> LanguagePair;
26         ///
27         std::vector<LanguagePair> const getLanguageData();
28
29 } // namespace frnt
30
31 #endif // FRNT_LANG_H