Not so soon, I guess, since that FIXME was from r6305.
[lyx.git] / src / output.h
blob4320943ea62e885a2b8c9b234d2c14f30eb32d77
1 // -*- C++ -*-
2 /**
3 * \file output.h
4 * This file is part of LyX, the document processor.
5 * Licence details can be found in the file COPYING.
7 * \author Lars Gullik Bjønnes
9 * Full author contact details are available in file CREDITS.
12 #ifndef OUTPUT_H
13 #define OUTPUT_H
15 #include "support/docstream.h"
18 namespace lyx {
20 namespace support { class FileName; }
22 bool openFileWrite(std::ofstream & ofs, support::FileName const & fname);
23 bool openFileWrite(ofdocstream & ofs, support::FileName const & fname);
26 } // namespace lyx
28 #endif