]> git.lyx.org Git - lyx.git/blobdiff - src/lyxtextclasslist.h
Move #includes out of header files.
[lyx.git] / src / lyxtextclasslist.h
index a5aa7cedb98ffd7b768aeb8691a40afbf13d936a..5e3ec8e9a95d802cab33ce911a34acca385c70e1 100644 (file)
@@ -1,21 +1,17 @@
 // -*- 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 "support/types.h"
 
 #include <boost/utility.hpp>
@@ -38,9 +34,9 @@ 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<bool, lyx::textclass_type> const
@@ -53,9 +49,7 @@ public:
        bool Read();
 private:
        ///
-       mutable ClassList classlist;
-       ///
-       void Add(LyXTextClass const &);
+       mutable ClassList classlist_;
 };
 
 ///