lyx_mirror/src/output.cpp
Abdelrazak Younes 9383f4c3c6 'using namespace std' instead of 'using std::xxx'
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22097 a592a061-630c-0410-9148-cb99ea01b6c8
2007-12-12 10:16:00 +00:00

60 lines
1.1 KiB
C++

/**
* \file output.cpp
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Lars Gullik Bjønnes
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "output.h"
#include "support/gettext.h"
#include "frontends/alert.h"
#include "support/filetools.h"
#include "support/lstrings.h"
using namespace std;
namespace lyx {
using support::bformat;
using support::FileName;
namespace {
template<typename OFStream>
bool doOpenFileWrite(OFStream & ofs, FileName const & fname)
{
ofs.open(fname.toFilesystemEncoding().c_str());
if (ofs)
return true;
docstring const file = fname.displayName(50);
docstring text = bformat(_("Could not open the specified "
"document\n%1$s."), file);
frontend::Alert::error(_("Could not open file"), text);
return false;
}
}
bool openFileWrite(ofstream & ofs, FileName const & fname)
{
return doOpenFileWrite(ofs, fname);
}
bool openFileWrite(odocfstream & ofs, FileName const & fname)
{
return doOpenFileWrite(ofs, fname);
}
} // namespace lyx