X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ftrans_decl.h;h=cd5da79e551e1f87f3206f4c23a455a46f3ed353;hb=b59621bc59584fb3496459a2be79acfc8476a9a1;hp=5e8899234388132d058021fca826523e60122881;hpb=0eccdd1c3613e5170deb77b22174dd0afde833e9;p=lyx.git diff --git a/src/trans_decl.h b/src/trans_decl.h index 5e88992343..cd5da79e55 100644 --- a/src/trans_decl.h +++ b/src/trans_decl.h @@ -1,35 +1,50 @@ // -*- C++ -*- -#ifndef _Trans_Decl_h_ -#define _Trans_Decl_h_ +/** + * \file trans_decl.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. + * + * \author Lars Gullik Bjønnes + * \author Matthias Ettrich + * + * Full author contact details are available in file CREDITS. + */ + +#ifndef TRANS_DECL_H +#define TRANS_DECL_H -#include "LString.h" #include "tex-accent.h" +#include +#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 + std::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; +/// +class KmodInfo { +public: + /// + std::string data; + /// tex_accent accent; - string allowed; - KmodException exception_list; - - KmodInfo(const KmodInfo&); + /// + KmodException exception_list; + /// KmodInfo(); - - KmodInfo& operator=(const KmodInfo&); }; #endif