]> git.lyx.org Git - lyx.git/blobdiff - src/sgml.h
Collapse all those LFUN_XYZ_APPLY to a single LFUN_INSET_APPLY.
[lyx.git] / src / sgml.h
index e3040e57eaddcf02045c533282d3ee307c9a2fb4..2b00726d5332402564d2e64d0e69359981e91071 100644 (file)
@@ -9,22 +9,28 @@
 
 #ifndef SGML_H
 #define SGML_H
-#include <config.h>
 
 #include "LString.h"
+
 #include <algorithm>
+#include <iosfwd>
+
 namespace sgml {
 
 /**
  * Escape the given character if necessary
- * to an SGML entity. The bool return is true
+ * to an SGML entity. Returns true
  * if it was a whitespace character.
  */
 std::pair<bool, string> escapeChar(char c);
 
+/// FIXME
+int openTag(std::ostream & os, Paragraph::depth_type depth,
+           bool mixcont, string const & latexname);
+
+/// FIXME
+int closeTag(std::ostream & os, Paragraph::depth_type depth,
+           bool mixcont, string const & latexname);
 }
 
 #endif // SGML_H