X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FSectioning.h;h=5bdc5b3963dbc419ba6dfcfcd947d25f648af39f;hb=37d42d45f3f4a5d3e916a080af50b37ae4a9d118;hp=ca1dd134b0a31efe500a3498da5f96e0fa9678ba;hpb=0b1b6dfa4ed99f2b7c2a36cb56dcbb9d5553ac33;p=lyx.git diff --git a/src/Sectioning.h b/src/Sectioning.h index ca1dd134b0..5bdc5b3963 100644 --- a/src/Sectioning.h +++ b/src/Sectioning.h @@ -1,45 +1,50 @@ // -*- C++ -*- +/** + * \file Sectioning.h + * 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. + */ #ifndef SECTIONING_H #define SECTIONING_H -#ifdef __GNUG__ -#pragma interface -#endif +#include "lyxfont.h" #include -#include "LString.h" -#include "lyxfont.h" /// class Section { public: /// - string const & name() const; + std::string const & name() const; /// int level() const; /// - string const & indent() const; + std::string const & indent() const; /// - string const & beforeskip() const; + std::string const & beforeskip() const; /// - string const & afterskip() const; + std::string const & afterskip() const; /// LyXFont const & style() const; /// bool display() const; private: /// - string name_; + std::string name_; /// int level_; /// - string indent_; + std::string indent_; /// - string beforeskip_; + std::string beforeskip_; /// - string afterskip_; + std::string afterskip_; /// LyXFont style_; }; @@ -47,10 +52,9 @@ private: /// class SectioningList { -public: private: /// - typedef std::map List_; + typedef std::map List_; /// List_ list_; };