]> git.lyx.org Git - lyx.git/blobdiff - src/output_xhtml.h
Shortcut for LyX HTML output. (Makes my life easier!)
[lyx.git] / src / output_xhtml.h
index 4b6c297e85fd907139f51f07b734e98cc73d2297..f0e1578d1558a0baf36eba6ed9c603da8536513a 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 &);
@@ -99,6 +104,8 @@ private:
        ///
        bool isTagOpen(std::string const &);
        ///
+       void writeError(std::string const &);
+       ///
        odocstream & os_;
        ///
        // int tab_;