]> git.lyx.org Git - lyx.git/blobdiff - src/output_docbook.h
Account for old versions of Pygments
[lyx.git] / src / output_docbook.h
index dd6090fe2a93ad5a5b5e2eec3dd07ead52f5e5d6..46e495f0057afb8f93c1dca04d55bf6b7fdacc51 100644 (file)
@@ -4,8 +4,8 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author Lars Gullik Bjønnes
- * \author José Matos
+ * \author Lars Gullik Bjønnes
+ * \author José Matos
  *
  * Full author contact details are available in file CREDITS.
  */
 #ifndef OUTPUT_DOCBOOK_H
 #define OUTPUT_DOCBOOK_H
 
-#include "ParagraphList_fwd.h"
-#include "support/docstream.h"
+#include "support/strfwd.h"
 
-#include <iosfwd>
+namespace lyx {
 
 class Buffer;
 class OutputParams;
+class Text;
 
 ///
-void docbookParagraphs(ParagraphList const & subset,
+void docbookParagraphs(Text const & text,
                       Buffer const & buf,
-                      lyx::odocstream & os,
+                      odocstream & os,
                       OutputParams const & runparams);
+
+} // namespace lyx
+
 #endif