]> git.lyx.org Git - lyx.git/blobdiff - src/trans_decl.h
white-space changes, removed definitions.h several enum changes because of this,...
[lyx.git] / src / trans_decl.h
index 85d39e0045fc3c4d00c228add2702594916102b6..1b2937f16ab6ad10652fd38421f2196757d76023 100644 (file)
@@ -1,35 +1,36 @@
 // -*- C++ -*-
-#ifndef _Trans_Decl_h_
-#define _Trans_Decl_h_
+#ifndef Trans_Decl_h
+#define Trans_Decl_h
 
 #include "LString.h"
 #include "tex-accent.h"
 
 struct Keyexc {
        char c;         /* character to make exception */
-       LString data;   /* exception data */
-       Keyexc *next;
+       string data;    /* exception data */
+       Keyexc * next;
        bool combined;  // Combination with another deadkey
        tex_accent accent;      // The accent combined with
 };
 
 ///
-typedef Keyexc *KmodException;
+typedef Keyexc * KmodException;
 
 //
 // 
 //
 
 struct KmodInfo {
-       LString data;
+       string data;
        tex_accent accent;
-       LString allowed;
+       string allowed;
        KmodException exception_list;    
+
        
-       KmodInfo(const KmodInfo&);
+       //KmodInfo(const KmodInfo&);
        KmodInfo();
        
-       KmodInfo& operator=(const KmodInfo&);
+       //KmodInfo& operator= (const KmodInfo&);
 };
 
 #endif