]> git.lyx.org Git - lyx.git/blobdiff - src/lyxlayout.h
remove unused code
[lyx.git] / src / lyxlayout.h
index ff6d1446f55c96c0264aa3fbceee544f5601792a..2566ece2ede3d49a0c1d05e7bdd27e288f96cf37 100644 (file)
@@ -52,6 +52,8 @@ public:
        ///
        string const & obsoleted_by() const;
        ///
+       string const & depends_on() const;
+       ///
        string const & latexname() const { return latexname_; }
        ///
        string const & labelstring() const { return labelstring_; }
@@ -196,6 +198,12 @@ private:
        */
        string obsoleted_by_;
 
+       /** Name of an layout which preamble must come before this one
+           This is used when the preamble snippet uses macros defined in
+           another preamble
+        */
+       string depends_on_;
+
        /// LaTeX name for environment
        string latexname_;