]> git.lyx.org Git - lyx.git/blobdiff - src/LaTeX.h
More fixes to insettabular/text (and some missing features added).
[lyx.git] / src / LaTeX.h
index e49069544228b1d79eaa9c3ff0aaa68fa16ac8d4..f9502806b64201b40aba398c258d784d1cd58e05 100644 (file)
@@ -23,7 +23,7 @@
 #include "DepTable.h"
 #include <vector>
 
-#include "support/utility.hpp"
+#include <boost/utility.hpp>
 
 class MiniBuffer;
 
@@ -111,6 +111,9 @@ public:
           path = name of the files original path.
        */
        LaTeX(string const & cmd, string const & file, string const & path);
+
+       ///
+       virtual ~LaTeX() {}
        
        /// runs LaTeX several times
        int run(TeXErrors &, MiniBuffer *);
@@ -120,6 +123,10 @@ public:
 
        /// use this for running LaTeX once
        int operator() ();
+
+       ///
+       int scanLogFile(TeXErrors &);
+
 protected:
        /// The dependency file.
        string depfile;
@@ -127,9 +134,6 @@ protected:
        ///
        void deplog(DepTable & head);
 
-       ///
-       int scanLogFile(TeXErrors &);
-
        ///
        bool runMakeIndex(string const &);