]> git.lyx.org Git - lyx.git/blobdiff - src/output.h
* src/tabular.[Ch]: simplify plaintext methods, because there
[lyx.git] / src / output.h
index 97492883f98a4aaa814ec4e044f4c3d6580f175a..fea5e1bb04ffe4a61bb9a22f956c09e3fc018e34 100644 (file)
 #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(odocfstream & ofs, support::FileName const & fname);
+
+
+} // namespace lyx
 
 #endif