]> git.lyx.org Git - features.git/blobdiff - src/Spacing.h
Replace LString.h with support/std_string.h,
[features.git] / src / Spacing.h
index 9c8fdec9d407402b0039b4f1306a070d950008b5..5c51bb49f43e779c3cd266533e8cff3b091972cd 100644 (file)
@@ -1,24 +1,20 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *        
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2001 The LyX Team.
+/**
+ * \file Spacing.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 SPACING_H
 #define SPACING_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
 #include <iosfwd>
 
-#include "LString.h"
+#include "support/std_string.h"
 
 ///
 class Spacing {
@@ -63,11 +59,14 @@ public:
        string const writeEnvirBegin() const;
        ///
        string const writeEnvirEnd() const;
+
 private:
        ///
        Space space;
        ///
        float value;
+       /// names of line spacing
+       static string const spacing_string[];
 };