lyx_mirror/src/insets/insethfill.C

43 lines
721 B
C++
Raw Normal View History

/**
* \file insethfill.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Andr<EFBFBD> P<EFBFBD>nitz
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#include "insethfill.h"
#include "support/LOstream.h"
using std::ostream;
InsetHFill::InsetHFill()
: InsetCommand(InsetCommandParams("hfill"))
{}
int InsetHFill::latex(Buffer const *, ostream & os, LatexRunParams const &,
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 *, ostream & os) const
{
os << "\n\\hfill \n";
}