X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ftrans_decl.h;h=9d6aa5b467d92f9983944f854d5721cbc324709a;hb=ba62665f966508db5a4de6864f4aa7374c5a5356;hp=86609d94e85c0df8cd04fb2a59b1fc41516dbfc2;hpb=0be0fcfd5907d448cd51addf83ed7032719a0692;p=lyx.git diff --git a/src/trans_decl.h b/src/trans_decl.h index 86609d94e8..9d6aa5b467 100644 --- a/src/trans_decl.h +++ b/src/trans_decl.h @@ -13,10 +13,13 @@ #ifndef TRANS_DECL_H #define TRANS_DECL_H -#include "LString.h" #include "tex-accent.h" #include +#include + + +namespace lyx { /// @@ -24,7 +27,7 @@ struct Keyexc { /// character to make exception char c; /// exception data - string data; + std::string data; /// Combination with another deadkey bool combined; /// The accent comined with @@ -35,9 +38,10 @@ struct Keyexc { typedef std::list KmodException; /// -struct KmodInfo { +class KmodInfo { +public: /// - string data; + std::string data; /// tex_accent accent; /// @@ -46,4 +50,7 @@ struct KmodInfo { KmodInfo(); }; + +} // namespace lyx + #endif