X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ftrans_decl.h;h=a9b6de44e55f1faaf3bd33771120a426abd3b237;hb=eead5ba43d0ddf06544ad1b40063981d3788c635;hp=1b2937f16ab6ad10652fd38421f2196757d76023;hpb=a040c0bc6f017d0591bbc7ad1aa590589dbc40ff;p=lyx.git diff --git a/src/trans_decl.h b/src/trans_decl.h index 1b2937f16a..a9b6de44e5 100644 --- a/src/trans_decl.h +++ b/src/trans_decl.h @@ -5,32 +5,34 @@ #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; - - - //KmodInfo(const KmodInfo&); + /// + KmodException exception_list; + /// KmodInfo(); - - //KmodInfo& operator= (const KmodInfo&); }; #endif