/** * \file insethfill.C * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author André Pönitz * * Full author contact details are available in file CREDITS */ #include #include "insethfill.h" #include "BufferView.h" #include "support/LOstream.h" using std::ostream; InsetHFill::InsetHFill() : InsetCommand(InsetCommandParams("hfill")) {} int InsetHFill::latex(Buffer const *, ostream & os, bool /*fragile*/, bool /*fs*/) const { os << getCommand(); return 0; } int InsetHFill::ascii(Buffer const *, ostream & os, int) const { os << '\t'; return 0; } void InsetHFill::write(Buffer const * buf, ostream & os) const { os << "\n\\hfill \n"; }