X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ftrans_decl.h;h=a9b6de44e55f1faaf3bd33771120a426abd3b237;hb=98c966c64594611e469313314abd1e59524adb4a;hp=e4052f975af862096fd291bddb6752b7854b38e4;hpb=5f3f9ad231bc0c24d34c00e3936e226d9834589a;p=lyx.git diff --git a/src/trans_decl.h b/src/trans_decl.h index e4052f975a..a9b6de44e5 100644 --- a/src/trans_decl.h +++ b/src/trans_decl.h @@ -5,26 +5,33 @@ #include "LString.h" #include "tex-accent.h" +#include + + +/// struct Keyexc { - char c; /* character to make exception */ - string 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; + /// Combination with another deadkey + bool combined; + /// The accent comined with + tex_accent accent; }; /// -typedef Keyexc * KmodException; - -// -// -// +typedef std::list KmodException; +/// struct KmodInfo { + /// string data; + /// tex_accent accent; - string allowed; - KmodException exception_list; + /// + KmodException exception_list; + /// KmodInfo(); };