X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FLaTeXFeatures.h;h=3fc223a2878305df8ac339179ebc5ec3713dc84d;hb=dad3c8ce74d1ebea92973bea5ca44f97d660d38e;hp=77497a854dce09273228205375319dec4a4662cc;hpb=e70c04b3503ae092b6b57686486f0e9182fc8184;p=lyx.git diff --git a/src/LaTeXFeatures.h b/src/LaTeXFeatures.h index 77497a854d..3fc223a287 100644 --- a/src/LaTeXFeatures.h +++ b/src/LaTeXFeatures.h @@ -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_; };