]> 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 e4052f975af862096fd291bddb6752b7854b38e4..71ab9d5d59689ed013ac5a812b1a630484367665 100644 (file)
@@ -2,29 +2,48 @@
 #ifndef Trans_Decl_h
 #define Trans_Decl_h
 
+#include <list>
+
 #include "LString.h"
 #include "tex-accent.h"
 
+///
 struct Keyexc {
-       char c;         /* character to make exception */
-       string data;    /* exception data */
+       /// character to make exception
+       char c;
+       /// exception data
+       string data;
+#if 0
+       ///
        Keyexc * next;
-       bool combined;  // Combination with another deadkey
-       tex_accent accent;      // The accent combined with
+#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 {
+       ///
        string data;
+       ///
        tex_accent accent;
+#if 0
+       ///
        string allowed;
-       KmodException exception_list;    
+#endif
+       ///
+       KmodException exception_list;
+       ///
        KmodInfo();
 };