]> git.lyx.org Git - lyx.git/blobdiff - src/LaTeX.h
Exporter.cpp: revert r34230 because this interferes with Enrico's new LyXVC feature...
[lyx.git] / src / LaTeX.h
index 821aa0f5b893b22a21f976f44123d238578a7765..78c283d85a6fb6c350a9c1dcc3f80cfb872c4db5 100644 (file)
@@ -4,7 +4,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author Lars Gullik Bjønnes
+ * \author Lars Gullik Bjønnes
  * \author Angus Leeming
  * \author Dekel Tsur
  *
 #ifndef LATEX_H
 #define LATEX_H
 
-#include "outputparams.h"
+#include "OutputParams.h"
 
 #include "support/docstring.h"
-#include "support/filename.h"
+#include "support/FileName.h"
 
-#include <boost/utility.hpp>
+#include <boost/noncopyable.hpp>
 #include <boost/signal.hpp>
 
 #include <vector>
@@ -66,10 +66,10 @@ private:
 };
 
 
-class Aux_Info {
+class AuxInfo {
 public:
        ///
-       Aux_Info() {}
+       AuxInfo() {}
        ///
        support::FileName aux_file;
        ///
@@ -82,8 +82,8 @@ public:
 
 
 ///
-bool operator==(Aux_Info const &, Aux_Info const &);
-bool operator!=(Aux_Info const &, Aux_Info const &);
+bool operator==(AuxInfo const &, AuxInfo const &);
+bool operator!=(AuxInfo const &, AuxInfo const &);
 
 
 /**
@@ -169,27 +169,26 @@ private:
 
        ///
        bool runMakeIndex(std::string const &, OutputParams const &,
-                         std::string const & = std::string());
+                         std::string const & = std::string());
 
        ///
-       bool runMakeIndexNomencl(support::FileName const &, OutputParams const &,
-                                std::string const &, std::string const &);
+       bool runMakeIndexNomencl(support::FileName const &, 
+                                std::string const &, std::string const &);
 
        ///
-       std::vector<Aux_Info> const scanAuxFiles(support::FileName const &);
+       std::vector<AuxInfo> const scanAuxFiles(support::FileName const &);
 
        ///
-       Aux_Info const scanAuxFile(support::FileName const &);
+       AuxInfo const scanAuxFile(support::FileName const &);
 
        ///
-       void scanAuxFile(support::FileName const &, Aux_Info &);
+       void scanAuxFile(support::FileName const &, AuxInfo &);
 
        ///
-       void updateBibtexDependencies(DepTable &,
-                                     std::vector<Aux_Info> const &);
+       void updateBibtexDependencies(DepTable &, std::vector<AuxInfo> const &);
 
        ///
-       bool runBibTeX(std::vector<Aux_Info> const &);
+       bool runBibTeX(std::vector<AuxInfo> const &, OutputParams const &);
 
        ///
        void deleteFilesOnError() const;