lyx_mirror/src/output.C

62 lines
1.1 KiB
C++
Raw Normal View History

/**
* \file output.C
* 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.
*/
#include <config.h>
#include "output.h"
#include "gettext.h"
#include "frontends/Alert.h"
#include "support/filetools.h"
namespace lyx {
using support::bformat;
using support::makeDisplayPath;
using std::ofstream;
using std::string;
namespace {
template<typename OFStream>
bool doOpenFileWrite(OFStream & ofs, string const & fname)
{
ofs.open(fname.c_str());
if (!ofs) {
docstring const file = makeDisplayPath(fname, 50);
docstring text = bformat(_("Could not open the specified "
"document\n%1$s."), file);
frontend::Alert::error(_("Could not open file"), text);
return false;
}
return true;
}
}
bool openFileWrite(ofstream & ofs, string const & fname)
{
return doOpenFileWrite(ofs, fname);
}
bool openFileWrite(odocfstream & ofs, string const & fname)
{
return doOpenFileWrite(ofs, fname);
}
} // namespace lyx