]> git.lyx.org Git - lyx.git/blobdiff - src/intl.h
go through horrendous contortions to work around font breakage in every
[lyx.git] / src / intl.h
index e83ad9d7a5130668d6692f40ea538f6fad6428dd..bc639dea0fd1680d243a63970fb7778c45babed4 100644 (file)
@@ -1,16 +1,25 @@
 // -*- C++ -*-
-/* International support for LyX */
+/**
+ * \file intl.h
+ * Copyright 1995-2002 the LyX Team
+ * Read the file COPYING
+ *
+ * \author unknown
+ * \author John Levon <moz@compsoc.man.ac.uk>
+ */
+
+
 #ifndef INTL_H
 #define INTL_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
 #include "LString.h"
 #include "trans_mgr.h"
 
 
+/**
+ * This class is used for managing keymaps
+ * for composing characters in LyX.
+ */
 class Intl {
 public:
        /// which keymap is currently used ?
@@ -37,7 +46,7 @@ public:
        void InitKeyMapper(bool on);
 
        // Get the Translation Manager
-       TransManager & getTrans();
+       TransManager & getTransManager();
 
        /// using primary or secondary keymap ?
        Keymap keymap;
@@ -55,7 +64,7 @@ private:
 
 
 inline
-TransManager & Intl::getTrans()
+TransManager & Intl::getTransManager()
 {
        return trans;
 }