]> git.lyx.org Git - lyx.git/blobdiff - src/LaTeXFeatures.h
Fix small bug in reading \set_color in lyxrc
[lyx.git] / src / LaTeXFeatures.h
index 33b51556cf65f3589d62bd37d3607912980adad0..48c4bc198eba806b0ce737fabcd0189b6b8d5e08 100644 (file)
@@ -40,6 +40,8 @@ struct LaTeXFeatures {
        string getMacros();
        /// The definitions needed by the document's textclass
        string getTClassPreamble();
+       ///
+       string getIncludedFiles();
 
        ///
        void showStruct();
@@ -53,6 +55,8 @@ struct LaTeXFeatures {
        //@Man: Packages
        //@{
        ///
+       bool array;
+       ///
        bool color;     // color.sty
 #ifdef USE_GRAPHICX
        ///
@@ -148,6 +152,14 @@ struct LaTeXFeatures {
        typedef std::set<Language const *> LanguageList;
        ///
        LanguageList UsedLanguages;
+       ///
+       typedef std::set<string> FloatList;
+       ///
+       FloatList usedFloats;
+       ///
+       typedef std::map<string , string> FileMap;
+       ///
+       FileMap IncludedFiles;
        //@}
        BufferParams const & bufferParams() const;
 private: