]> git.lyx.org Git - lyx.git/blobdiff - src/trans_decl.h
some support for matrix operations with maple ('M-x math-extern maple evalm')
[lyx.git] / src / trans_decl.h
index df36f7cb0d46430b930ef4f72f4ee2910d1e365c..71ab9d5d59689ed013ac5a812b1a630484367665 100644 (file)
@@ -2,6 +2,8 @@
 #ifndef Trans_Decl_h
 #define Trans_Decl_h
 
+#include <list>
+
 #include "LString.h"
 #include "tex-accent.h"
 
@@ -11,15 +13,23 @@ struct Keyexc {
        char c;
        /// exception data
        string data;
+#if 0
+       ///
        Keyexc * next;
+#endif
        /// Combination with another deadkey
        bool combined;
        /// The accent comined with
        tex_accent accent;
 };
 
+#if 0
 ///
 typedef Keyexc * KmodException;
+#else
+///
+typedef std::list<Keyexc> KmodException;
+#endif
 
 ///
 struct KmodInfo {
@@ -27,8 +37,10 @@ struct KmodInfo {
        string data;
        ///
        tex_accent accent;
+#if 0
        ///
        string allowed;
+#endif
        ///
        KmodException exception_list;
        ///