]> git.lyx.org Git - lyx.git/blobdiff - src/LaTeXFeatures.h
Small fix.
[lyx.git] / src / LaTeXFeatures.h
index 33b51556cf65f3589d62bd37d3607912980adad0..cee55913a121baf94785f6acbfc916483df0c751 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,14 +55,13 @@ struct LaTeXFeatures {
        //@Man: Packages
        //@{
        ///
+       bool array;
+       ///
        bool color;     // color.sty
-#ifdef USE_GRAPHICX
        ///
        bool graphicx; // graphicx.sty
-#else
        ///
        bool graphics;  // graphics.sty
-#endif
        ///
        bool setspace;  // setspace.sty
        ///
@@ -148,6 +149,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: