X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flyxtextclasslist.h;h=978eb2afbe9640f5944fc361af20303eaa2d0244;hb=37d42d45f3f4a5d3e916a080af50b37ae4a9d118;hp=a5aa7cedb98ffd7b768aeb8691a40afbf13d936a;hpb=d62a9764da0e58808f7d2b3844d9b9c02f7026c4;p=lyx.git diff --git a/src/lyxtextclasslist.h b/src/lyxtextclasslist.h index a5aa7cedb9..978eb2afbe 100644 --- a/src/lyxtextclasslist.h +++ b/src/lyxtextclasslist.h @@ -1,30 +1,26 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== +/** + * \file lyxtextclasslist.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Lars Gullik Bjønnes * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2001 The LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS. + */ #ifndef LYXTEXTCLASSLIST_H #define LYXTEXTCLASSLIST_H -#ifdef __GNUG__ -#pragma interface -#endif +#include "lyxtextclass.h" #include "support/types.h" #include -#include "LString.h" - +#include #include -class LyXTextClass; class LyXLayout; /// Reads the style files @@ -38,13 +34,13 @@ public: /// typedef ClassList::const_iterator const_iterator; /// - const_iterator begin() const { return classlist.begin(); } + const_iterator begin() const { return classlist_.begin(); } /// - const_iterator end() const { return classlist.end(); } + const_iterator end() const { return classlist_.end(); } /// Gets textclass number from name, -1 if textclass name does not exist std::pair const - NumberOfClass(string const & textclass) const; + NumberOfClass(std::string const & textclass) const; /// LyXTextClass const & operator[](lyx::textclass_type textclass) const; @@ -53,9 +49,7 @@ public: bool Read(); private: /// - mutable ClassList classlist; - /// - void Add(LyXTextClass const &); + mutable ClassList classlist_; }; ///