mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
4ad536375f
NOTE: Again, I'm not increasing the layout format, though I have added a couple new things here. If anyone thinks I really do need to do that, then I will. But I don't think it's necessary, as no-one ought to be using this. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@30178 a592a061-630c-0410-9148-cb99ea01b6c8
106 lines
1.6 KiB
C++
106 lines
1.6 KiB
C++
/**
|
|
* \file Floating.cpp
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Lars Gullik Bjønnes
|
|
* \author Jean-Marc Lasgouttes
|
|
* \author Angus Leeming
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "Floating.h"
|
|
|
|
using namespace std;
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
Floating::Floating()
|
|
{}
|
|
|
|
|
|
Floating::Floating(string const & type, string const & placement,
|
|
string const & ext, string const & within,
|
|
string const & style, string const & name,
|
|
string const & listName, string const & htmlType,
|
|
string const & htmlClass, string const & htmlStyle,
|
|
bool builtin)
|
|
: type_(type), placement_(placement), ext_(ext), within_(within),
|
|
style_(style), name_(name), listName_(listName), htmlType_(htmlType),
|
|
htmlClass_(htmlClass), htmlStyle_(htmlStyle), builtin_(builtin)
|
|
{}
|
|
|
|
|
|
string const & Floating::type() const
|
|
{
|
|
return type_;
|
|
}
|
|
|
|
|
|
string const & Floating::placement() const
|
|
{
|
|
return placement_;
|
|
}
|
|
|
|
|
|
string const & Floating::ext() const
|
|
{
|
|
return ext_;
|
|
}
|
|
|
|
|
|
string const & Floating::within() const
|
|
{
|
|
return within_;
|
|
}
|
|
|
|
|
|
string const & Floating::style() const
|
|
{
|
|
return style_;
|
|
}
|
|
|
|
|
|
string const & Floating::name() const
|
|
{
|
|
return name_;
|
|
}
|
|
|
|
|
|
string const & Floating::listName() const
|
|
{
|
|
return listName_;
|
|
}
|
|
|
|
|
|
string const & Floating::htmlStyle() const
|
|
{
|
|
return htmlStyle_;
|
|
}
|
|
|
|
|
|
string const & Floating::htmlClass() const
|
|
{
|
|
return htmlClass_;
|
|
}
|
|
|
|
|
|
string const & Floating::htmlType() const
|
|
{
|
|
return htmlType_;
|
|
}
|
|
|
|
|
|
bool Floating::builtin() const
|
|
{
|
|
return builtin_;
|
|
}
|
|
|
|
|
|
} // namespace lyx
|