]> git.lyx.org Git - lyx.git/blobdiff - src/trans_decl.h
* support/qstring_helpers.h: erase ucs4_to_qstring() method.
[lyx.git] / src / trans_decl.h
index a916fb92d5fd3490c8308920a6851dee15a9148f..9d6aa5b467d92f9983944f854d5721cbc324709a 100644 (file)
 
 #include "tex-accent.h"
 
-#include "support/std_string.h"
 #include <list>
+#include <string>
+
+
+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<Keyexc> KmodException;
 
 ///
-struct KmodInfo {
+class KmodInfo {
+public:
        ///
-       string data;
+       std::string data;
        ///
        tex_accent accent;
        ///
@@ -46,4 +50,7 @@ struct KmodInfo {
        KmodInfo();
 };
 
+
+} // namespace lyx
+
 #endif