X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ftrans_decl.h;h=9d6aa5b467d92f9983944f854d5721cbc324709a;hb=ba62665f966508db5a4de6864f4aa7374c5a5356;hp=a916fb92d5fd3490c8308920a6851dee15a9148f;hpb=0f9678630c661df5e3376c16cab3a5b2824871e9;p=lyx.git diff --git a/src/trans_decl.h b/src/trans_decl.h index a916fb92d5..9d6aa5b467 100644 --- a/src/trans_decl.h +++ b/src/trans_decl.h @@ -15,8 +15,11 @@ #include "tex-accent.h" -#include "support/std_string.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