]> git.lyx.org Git - lyx.git/blobdiff - src/layout.h
get rid of MSVC warning (signed/unsigned comparison)
[lyx.git] / src / layout.h
index 82ca677af39227e9107cc8e248782259df7fa9ce..2d62584d4e5fc90fad3ae5e96e5b09c9f7952f3a 100644 (file)
@@ -1,24 +1,25 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
+/**
+ * \file layout.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
+ * \author Jean-Marc Lasgouttes
  *
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2001 The LyX Team.
- *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS.
+ */
 
 #ifndef LAYOUT_H
 #define LAYOUT_H
 
+namespace lyx {
+
 /// The different output types
 enum OutputType {
        ///
        LATEX = 1,
        ///
-       LINUXDOC,
-       ///
        DOCBOOK,
        ///
        LITERATE
@@ -110,25 +111,11 @@ enum LYX_LABEL_TYPES {
        ///
        LABEL_SENSITIVE,
        ///
-       LABEL_COUNTER_CHAPTER,
-       ///
-       LABEL_COUNTER_SECTION,
-       ///
-       LABEL_COUNTER_SUBSECTION,
-       ///
-       LABEL_COUNTER_SUBSUBSECTION,
-       ///
-       LABEL_COUNTER_PARAGRAPH,
-       ///
-       LABEL_COUNTER_SUBPARAGRAPH,
-       ///
-       LABEL_COUNTER_ENUMI,
-       ///
-       LABEL_COUNTER_ENUMII,
+       LABEL_COUNTER,
        ///
-       LABEL_COUNTER_ENUMIII,
+       LABEL_ENUMERATE,
        ///
-       LABEL_COUNTER_ENUMIV
+       LABEL_ITEMIZE
 };
 
 
@@ -167,5 +154,6 @@ enum LYX_END_LABEL_TYPES {
  * previous paragraph is standard too. Well, this is LateX and it is good!
  */
 
+} // namespace lyx
 
 #endif