]> git.lyx.org Git - lyx.git/blobdiff - src/output_xhtml.h
Fix typo.
[lyx.git] / src / output_xhtml.h
index 4b6c297e85fd907139f51f07b734e98cc73d2297..327c40274b281dbb62d9b13e92992a6120d7f5b5 100644 (file)
@@ -23,6 +23,9 @@ 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) {}
@@ -86,6 +89,8 @@ public:
        ///
        XHTMLStream & operator<<(docstring const &);
        ///
+       XHTMLStream & operator<<(const char *);
+       ///
        XHTMLStream & operator<<(char_type);
        ///
        XHTMLStream & operator<<(StartTag const &);