]> git.lyx.org Git - lyx.git/blobdiff - src/lyxrc.h
Andres fixes to sstrem problems
[lyx.git] / src / lyxrc.h
index 11d680324d972bff68252d08e357d0c68e7d6da8..ede04f705552e83bab5df1e93f89372d91dbd4ea 100644 (file)
@@ -21,8 +21,6 @@
 #include "ToolbarDefaults.h"
 #include "bufferparams.h"
 
-using std::map;
-
 /// This contains the runtime configuration of LyX
 class LyXRC {
 public:
@@ -36,7 +34,7 @@ public:
        ///
         void print() const;
        ///
-       void output(ostream & os) const;
+       void output(std::ostream & os) const;
        /// Is a bind file already (or currently) read?
        bool hasBindFile;
        ///
@@ -121,8 +119,6 @@ public:
        /// command to run an html converter incl. options
        string html_command;
        ///
-       string sgml_extra_options;
-       ///
        string document_path;
        ///
        string template_path;
@@ -223,13 +219,25 @@ public:
        ///
        bool rtl_support;
        ///
-       string auto_mathmode;
+       bool auto_number;
        ///
        bool show_banner;
        /// Do we have to use a GUI?
        bool use_gui;
        ///
-       typedef map<string, int> Bindings;
+       string linuxdoc_to_lyx_command;
+       ///
+       string linuxdoc_to_html_command;
+       ///
+       string linuxdoc_to_latex_command;
+       ///
+       string docbook_to_dvi_command;
+       ///
+       string docbook_to_html_command;
+       ///
+       string docbook_to_pdf_command;
+       ///
+       typedef std::map<string, int> Bindings;
        ///
        Bindings bindings;
 private: