]> git.lyx.org Git - lyx.git/blobdiff - src/output_xhtml.h
Fix typo.
[lyx.git] / src / output_xhtml.h
index b4281ef45f36509693a98e6f6cc0c9532ea3ead7..327c40274b281dbb62d9b13e92992a6120d7f5b5 100644 (file)
@@ -23,7 +23,12 @@ class Buffer;
 class OutputParams;
 class Text;
 
+// Inspiration for the *Tag structs and for XHTMLStream
+// came from MathStream and its cousins.
+
 struct StartTag {
+       ///
+       StartTag(std::string const & tag) : tag_(tag) {}
        ///
        StartTag(std::string const & tag, std::string const & attr, 
                bool keepempty = false) 
@@ -84,6 +89,8 @@ public:
        ///
        XHTMLStream & operator<<(docstring const &);
        ///
+       XHTMLStream & operator<<(const char *);
+       ///
        XHTMLStream & operator<<(char_type);
        ///
        XHTMLStream & operator<<(StartTag const &);