]> git.lyx.org Git - lyx.git/blob - src/output.h
Avoid full metrics computation with Update:FitCursor
[lyx.git] / src / output.h
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.
6  *
7  * \author Lars Gullik Bjønnes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef OUTPUT_H
13 #define OUTPUT_H
14
15 #include "support/docstream.h"
16
17
18 namespace lyx {
19
20 namespace support { class FileName; }
21
22 bool openFileWrite(std::ofstream & ofs, support::FileName const & fname);
23 bool openFileWrite(ofdocstream & ofs, support::FileName const & fname);
24
25
26 } // namespace lyx
27
28 #endif