]> git.lyx.org Git - lyx.git/blobdiff - src/LaTeXFeatures.h
listerrors.lyx : Update a link.
[lyx.git] / src / LaTeXFeatures.h
index 580ff2e215c8eaa5a59f4898307d34b849aa6a82..3b1cc89d646233a5c202c6d48249b6083aa50df4 100644 (file)
@@ -82,6 +82,10 @@ public:
        void addPreambleSnippet(std::string const &);
        ///
        std::string getPreambleSnippets() const;
+       ///
+       void addCSSSnippet(std::string const &);
+       ///
+       std::string getCSSSnippets() const;
        /// Add a feature name requirements
        void require(std::string const & name);
        /// Add a set of feature names requirements
@@ -150,6 +154,8 @@ private:
        ///
        SnippetList preamble_snippets_;
        ///
+       SnippetList css_snippets_;
+       ///
        typedef std::set<Language const *> LanguageList;
        /// used languages (only those that are supported by babel)
        LanguageList UsedLanguages_;