From 5cb1a6a08d0afdc121cc6d61c8a60ce58be490e6 Mon Sep 17 00:00:00 2001 From: Pavel Sanda Date: Mon, 22 Feb 2010 02:00:59 +0000 Subject: [PATCH] Forgot these git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33532 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/Section.cpp | 65 ---------------------------------------------- src/Section.h | 68 ------------------------------------------------- 2 files changed, 133 deletions(-) delete mode 100644 src/Section.cpp delete mode 100644 src/Section.h diff --git a/src/Section.cpp b/src/Section.cpp deleted file mode 100644 index 2ec968e8e6..0000000000 --- a/src/Section.cpp +++ /dev/null @@ -1,65 +0,0 @@ -/** - * \file Section.cpp - * 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. - */ - -#include - -#include "Section.h" - -using namespace std; - -namespace lyx { - - -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_; -} - - -Font 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; -} - - -} // namespace lyx diff --git a/src/Section.h b/src/Section.h deleted file mode 100644 index e76cb44bc0..0000000000 --- a/src/Section.h +++ /dev/null @@ -1,68 +0,0 @@ -// -*- C++ -*- -/** - * \file Section.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 SECTION_H -#define SECTION_H - -#include "Font.h" - -#include - - -namespace lyx { - - -/// -class Section { -public: - /// - std::string const & name() const; - /// - int level() const; - /// - std::string const & indent() const; - /// - std::string const & beforeskip() const; - /// - std::string const & afterskip() const; - /// - Font const & style() const; - /// - bool display() const; -private: - /// - std::string name_; - /// - int level_; - /// - std::string indent_; - /// - std::string beforeskip_; - /// - std::string afterskip_; - /// - Font style_; -}; - - -/// -class SectioningList { -private: - /// - typedef std::map List_; - /// - List_ list_; -}; - - -} // namespace lyx - -#endif -- 2.39.5