]> 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 70054ca33d61b436fcdac1879a6fe0db67fc5b63..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
        ///
@@ -152,6 +156,10 @@ struct LaTeXFeatures {
        typedef std::set<string> FloatList;
        ///
        FloatList usedFloats;
+       ///
+       typedef std::map<string , string> FileMap;
+       ///
+       FileMap IncludedFiles;
        //@}
        BufferParams const & bufferParams() const;
 private: