X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ftrans_decl.h;h=9d6aa5b467d92f9983944f854d5721cbc324709a;hb=ba62665f966508db5a4de6864f4aa7374c5a5356;hp=71ab9d5d59689ed013ac5a812b1a630484367665;hpb=efe0b0b8eb340b7c34ead8afe5d81b410d5e7865;p=lyx.git diff --git a/src/trans_decl.h b/src/trans_decl.h index 71ab9d5d59..9d6aa5b467 100644 --- a/src/trans_decl.h +++ b/src/trans_decl.h @@ -1,50 +1,56 @@ // -*- 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. + */ -#include +#ifndef TRANS_DECL_H +#define TRANS_DECL_H -#include "LString.h" #include "tex-accent.h" +#include +#include + + +namespace lyx { + + /// struct Keyexc { /// character to make exception char c; /// exception data - string data; -#if 0 - /// - Keyexc * next; -#endif + std::string data; /// Combination with another deadkey bool combined; /// The accent comined with tex_accent accent; }; -#if 0 -/// -typedef Keyexc * KmodException; -#else /// typedef std::list KmodException; -#endif /// -struct KmodInfo { +class KmodInfo { +public: /// - string data; + std::string data; /// tex_accent accent; -#if 0 - /// - string allowed; -#endif /// KmodException exception_list; /// KmodInfo(); }; + +} // namespace lyx + #endif