X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ftrans_decl.h;h=df36f7cb0d46430b930ef4f72f4ee2910d1e365c;hb=48cedb740a554d7c285a7d778877843506c75bb1;hp=85d39e0045fc3c4d00c228add2702594916102b6;hpb=27de1486ca34aaad446adb798d71a77d6f6304da;p=lyx.git diff --git a/src/trans_decl.h b/src/trans_decl.h index 85d39e0045..df36f7cb0d 100644 --- a/src/trans_decl.h +++ b/src/trans_decl.h @@ -1,35 +1,38 @@ // -*- 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; - bool combined; // Combination with another deadkey - tex_accent accent; // The accent combined with + /// character to make exception + char c; + /// exception data + string data; + Keyexc * next; + /// Combination with another deadkey + bool combined; + /// The accent comined with + tex_accent accent; }; /// -typedef Keyexc *KmodException; - -// -// -// +typedef Keyexc * KmodException; +/// struct KmodInfo { - LString data; + /// + string data; + /// tex_accent accent; - LString allowed; - KmodException exception_list; - - KmodInfo(const KmodInfo&); + /// + string allowed; + /// + KmodException exception_list; + /// KmodInfo(); - - KmodInfo& operator=(const KmodInfo&); }; #endif