]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/LyXKeySym.h
Lars says _(_(b)) is a bug ... fix
[lyx.git] / src / frontends / LyXKeySym.h
index c003e5ab7a14a0469401f1c2bd04ddf9d5e67c17..84b9a869f97a1af8947237df6f0b695613fc38a1 100644 (file)
@@ -1,19 +1,17 @@
 // -*- C++ -*-
 /**
  * \file LyXKeySym.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 Asger and Juergen
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef LYXKEYSYM_H
 #define LYXKEYSYM_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
 #include "LString.h"
 #include <boost/shared_ptr.hpp>
 
@@ -47,14 +45,15 @@ public:
         * This relies on user to use the right encoding.
         */
        virtual char getISOEncoded() const = 0;
-
-       /**
-        * We need to be able to equality compare these for the
-        * sake of the keymap business.
-        */
-       virtual bool operator==(LyXKeySym const & k) const = 0;
 };
 
+
+/**
+ * We need to be able to equality compare these for the
+ * sake of the keymap business.
+ */
+bool operator==(LyXKeySym const & k1, LyXKeySym const & k2);
+
 typedef boost::shared_ptr<LyXKeySym> LyXKeySymPtr;
 
 #endif