lyx_mirror/src/Sectioning.C
Lars Gullik Bjønnes 99d1627a47 dont use pragma impementation and interface anymore
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6138 a592a061-630c-0410-9148-cb99ea01b6c8
2003-02-13 16:53:15 +00:00

48 lines
582 B
C

#include <config.h>
#include "Sectioning.h"
string const & Section::name() const
{
return name_;
}
int Section::level() const
{
return level_;
}
string const & Section::indent() const
{
return indent_;
}
string const & Section::beforeskip() const
{
return beforeskip_;
}
string const & Section::afterskip() const
{
return afterskip_;
}
LyXFont const & Section::style() const
{
return style_;
}
bool Section::display() const
{
// If afterskip is negative it is a display section.
if (!afterskip_.empty() && afterskip_[0] == '-')
return false;
return true;
}