]> git.lyx.org Git - lyx.git/blobdiff - src/ParameterStruct.h
ws changes only
[lyx.git] / src / ParameterStruct.h
index 9a766d027ed8886e1e0f1e2a43a99e80ac114c6b..a45d00fbfcbcf87b3a561df8b0a2da1feb5f4123 100644 (file)
@@ -1,23 +1,31 @@
 // -*- C++ -*-
+/**
+ * \file ParameterStruct.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 PARAMETERSTRUCT_H
 #define PARAMETERSTRUCT_H
 
-#include "vspace.h"
-#include "Spacing.h"
 #include "layout.h"
 #include "lyxlength.h"
+#include "Spacing.h"
+#include "vspace.h"
+
+#include "support/types.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 ///
 struct ParameterStruct {
        ///
-       ParameterStruct();
+       typedef lyx::depth_type depth_type;
        ///
-       typedef unsigned int depth_type;
+       ParameterStruct();
        ///
        VSpace added_space_top;
        ///
@@ -43,9 +51,9 @@ struct ParameterStruct {
        ///
        bool appendix;
        ///
-       string labelstring;
+       std::string labelstring;
        ///
-       string labelwidthstring;
+       std::string labelwidthstring;
        ///
        LyXLength leftindent;
 };