X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ftrans_decl.h;h=9d6aa5b467d92f9983944f854d5721cbc324709a;hb=a617e0d978b460f5529737da1f1c73088e45a6eb;hp=57ff760d76985791608063257c3cf7255e85f364;hpb=236ea81bc5c0ce7101c9460d1ee97b8f3c9be9df;p=lyx.git diff --git a/src/trans_decl.h b/src/trans_decl.h index 57ff760d76..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 "support/std_string.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