]> git.lyx.org Git - lyx.git/blobdiff - src/trans_decl.h
added a regex to be used when the system is missing one, use noinst instead of pkglib...
[lyx.git] / src / trans_decl.h
index 5e8899234388132d058021fca826523e60122881..e4052f975af862096fd291bddb6752b7854b38e4 100644 (file)
@@ -1,6 +1,6 @@
 // -*- C++ -*-
-#ifndef _Trans_Decl_h_
-#define _Trans_Decl_h_
+#ifndef Trans_Decl_h
+#define Trans_Decl_h
 
 #include "LString.h"
 #include "tex-accent.h"
@@ -8,13 +8,13 @@
 struct Keyexc {
        char c;         /* character to make exception */
        string data;    /* exception data */
-       Keyexc *next;
+       Keyexc * next;
        bool combined;  // Combination with another deadkey
        tex_accent accent;      // The accent combined with
 };
 
 ///
-typedef Keyexc *KmodException;
+typedef Keyexc * KmodException;
 
 //
 // 
@@ -25,11 +25,7 @@ struct KmodInfo {
        tex_accent accent;
        string allowed;
        KmodException exception_list;    
-       
-       KmodInfo(const KmodInfo&);
        KmodInfo();
-       
-       KmodInfo& operator=(const KmodInfo&);
 };
 
 #endif