]> git.lyx.org Git - lyx.git/blobdiff - src/output.h
Fixed some lines that were too long. It compiled afterwards.
[lyx.git] / src / output.h
index beecef7a3939124662d95b6557a7dfde0de12900..fea5e1bb04ffe4a61bb9a22f956c09e3fc018e34 100644 (file)
 #ifndef OUTPUT_H
 #define OUTPUT_H
 
-#include <iosfwd>
-#include <string>
+#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(odocfstream & ofs, support::FileName const & fname);
+
+
+} // namespace lyx
 
 #endif