2003-11-05 12:06:20 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
|
|
|
|
* \file output.h
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef OUTPUT_H
|
|
|
|
|
#define OUTPUT_H
|
|
|
|
|
|
2006-10-11 19:40:50 +00:00
|
|
|
|
#include "support/docstream.h"
|
2003-11-05 12:06:20 +00:00
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
2006-12-04 15:46:57 +00:00
|
|
|
|
namespace support { class FileName; }
|
|
|
|
|
|
|
|
|
|
bool openFileWrite(std::ofstream & ofs, support::FileName const & fname);
|
|
|
|
|
bool openFileWrite(odocfstream & ofs, support::FileName const & fname);
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|
2003-11-05 12:06:20 +00:00
|
|
|
|
|
|
|
|
|
#endif
|