]> git.lyx.org Git - lyx.git/blobdiff - src/lyxtextclasslist.h
Continue to improve GtkLengthEntry
[lyx.git] / src / lyxtextclasslist.h
index a84a05aac5f609948af3fcd07cd185824559d68a..978eb2afbe9640f5944fc361af20303eaa2d0244 100644 (file)
@@ -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 <boost/utility.hpp>
 
-#include "LString.h"
-
+#include <string>
 #include <vector>
 
-class LyXTextClass;
 class LyXLayout;
 
 /// Reads the style files
@@ -38,28 +34,22 @@ 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.
-           Returns -1 if textclass name does not exist
-       */
+       /// Gets textclass number from name, -1 if textclass name does not exist
        std::pair<bool, lyx::textclass_type> const
-       NumberOfClass(string const & textclass) const;
+       NumberOfClass(std::string const & textclass) const;
 
        ///
        LyXTextClass const & operator[](lyx::textclass_type textclass) const;
 
-       /** Read textclass list.
-           Returns false if this fails
-       */
+       /// Read textclass list.  Returns false if this fails.
        bool Read();
 private:
        ///
-       mutable ClassList classlist;
-       ///
-       void Add(LyXTextClass const &);
+       mutable ClassList classlist_;
 };
 
 ///