]> git.lyx.org Git - lyx.git/blobdiff - src/output.h
Provide proper fallback if a bibliography processor is not found
[lyx.git] / src / output.h
index 97492883f98a4aaa814ec4e044f4c3d6580f175a..4320943ea62e885a2b8c9b234d2c14f30eb32d77 100644 (file)
@@ -4,7 +4,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author Lars Gullik Bjønnes
+ * \author Lars Gullik Bjønnes
  *
  * Full author contact details are available in file CREDITS.
  */
 #ifndef OUTPUT_H
 #define OUTPUT_H
 
-#include <iosfwd>
+#include "support/docstream.h"
 
-bool openFileWrite(std::ofstream & ofs, std::string const & fname);
+
+namespace lyx {
+
+namespace support { class FileName; }
+
+bool openFileWrite(std::ofstream & ofs, support::FileName const & fname);
+bool openFileWrite(ofdocstream & ofs, support::FileName const & fname);
+
+
+} // namespace lyx
 
 #endif