]> git.lyx.org Git - lyx.git/blobdiff - src/trans_decl.h
Restore the version number position on the splash screen
[lyx.git] / src / trans_decl.h
index 57ff760d76985791608063257c3cf7255e85f364..f3704ab3d02f36919490e7050224a676881eb131 100644 (file)
 #ifndef TRANS_DECL_H
 #define TRANS_DECL_H
 
-#include "support/std_string.h"
 #include "tex-accent.h"
 
 #include <list>
 
 
+namespace lyx {
+
+
 ///
 struct Keyexc {
        /// character to make exception
-       char c;
+       char_type c;
        /// exception data
-       string data;
+       docstring data;
        /// Combination with another deadkey
        bool combined;
        /// The accent comined with
@@ -35,9 +37,10 @@ struct Keyexc {
 typedef std::list<Keyexc> KmodException;
 
 ///
-struct KmodInfo {
+class KmodInfo {
+public:
        ///
-       string data;
+       docstring data;
        ///
        tex_accent accent;
        ///
@@ -46,4 +49,7 @@ struct KmodInfo {
        KmodInfo();
 };
 
+
+} // namespace lyx
+
 #endif