]> git.lyx.org Git - lyx.git/blobdiff - src/LaTeXFeatures.h
* doxy
[lyx.git] / src / LaTeXFeatures.h
index 77497a854dce09273228205375319dec4a4662cc..3fc223a2878305df8ac339179ebc5ec3713dc84d 100644 (file)
@@ -119,6 +119,10 @@ public:
        void inFloat(bool const b) { in_float_ = b; }
        /// Runparams that will be used for exporting this file.
        OutputParams const & runparams() const { return runparams_; }
+       ///
+       void setHTMLTitle(docstring const & t) { htmltitle_ = t; }
+       ///
+       docstring const & htmlTitle() const { return htmltitle_; }
 
 private:
        ///
@@ -163,6 +167,8 @@ private:
        OutputParams const & runparams_;
        ///
        bool in_float_;
+       ///
+       docstring htmltitle_;
 };