]> git.lyx.org Git - features.git/blobdiff - src/frontends/controllers/frnt_lang.h
Replace LString.h with support/std_string.h,
[features.git] / src / frontends / controllers / frnt_lang.h
index c3d949afb24ddcc713e646166b71d4b93db97345..ffff790236cc3d92791bb2e14ae2fa9dc5a6adb4 100644 (file)
@@ -1,32 +1,33 @@
 // -*- C++ -*-
-/*
+/**
  * \file frnt_lang.h
- * Copyright 2002 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author Angus Leeming, a.leeming@ic.ac.uk
+ * \author Angus Leeming
+ *
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef FRNT_LANG_H
 #define FRNT_LANG_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
-#include "LString.h"
+#include "support/std_string.h"
 #include <utility>
 #include <vector>
 
 /** Ease the use of internationalised language strings in the dialogs.
  */
 namespace frnt {
-       ///
-       typedef std::pair<string, string> LanguagePair;
-       /** If the caller is the character dialog, add "No change" and "Reset"
-        *  to the vector.
-        */
-       std::vector<LanguagePair> const getLanguageData(bool character_dlg);
+
+///
+typedef std::pair<string, string> LanguagePair;
+
+/** If the caller is the character dialog, add "No change" and "Reset"
+ *  to the vector.
+ */
+std::vector<LanguagePair> const getLanguageData(bool character_dlg);
 
 } // namespace frnt