X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FLaTeX.h;h=78c283d85a6fb6c350a9c1dcc3f80cfb872c4db5;hb=4df7d8ab1ae443119057562fb76c2e438c053eef;hp=bc310ec1db5d6d1d493f86d086e121d371365c67;hpb=0c9756da867d276404fc9938059a7ac96014e0ec;p=lyx.git diff --git a/src/LaTeX.h b/src/LaTeX.h index bc310ec1db..78c283d85a 100644 --- a/src/LaTeX.h +++ b/src/LaTeX.h @@ -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 * @@ -14,12 +14,12 @@ #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 +#include #include #include @@ -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,23 +169,26 @@ private: /// bool runMakeIndex(std::string const &, OutputParams const &, - std::string const & = std::string()); + std::string const & = std::string()); /// - std::vector const scanAuxFiles(support::FileName const &); + bool runMakeIndexNomencl(support::FileName const &, + std::string const &, std::string const &); /// - Aux_Info const scanAuxFile(support::FileName const &); + std::vector const scanAuxFiles(support::FileName const &); /// - void scanAuxFile(support::FileName const &, Aux_Info &); + AuxInfo const scanAuxFile(support::FileName const &); /// - void updateBibtexDependencies(DepTable &, - std::vector const &); + void scanAuxFile(support::FileName const &, AuxInfo &); /// - bool runBibTeX(std::vector const &); + void updateBibtexDependencies(DepTable &, std::vector const &); + + /// + bool runBibTeX(std::vector const &, OutputParams const &); /// void deleteFilesOnError() const;