]> git.lyx.org Git - lyx.git/blobdiff - src/Spacing.h
fix reading the author field.
[lyx.git] / src / Spacing.h
index 5c51bb49f43e779c3cd266533e8cff3b091972cd..495a97d16aadaf71b7cbb7e3ff824420e7717e85 100644 (file)
@@ -1,6 +1,6 @@
 // -*- C++ -*-
 /**
- * \file Spacing.h
+ * \file src/Spacing.h
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
@@ -13,8 +13,8 @@
 #define SPACING_H
 
 #include <iosfwd>
+#include <string>
 
-#include "support/std_string.h"
 
 ///
 class Spacing {
@@ -38,7 +38,7 @@ public:
        Spacing(Spacing::Space sp, float val = 1.0) {
                set(sp, val);
        }
-       Spacing(Spacing::Space sp, string const & val) {
+       Spacing(Spacing::Space sp, std::string const & val) {
                set(sp, val);
        }
        ///
@@ -52,13 +52,13 @@ public:
        ///
        void set(Spacing::Space sp, float val = 1.0);
        ///
-       void set(Spacing::Space sp, string const & val) ;
+       void set(Spacing::Space sp, std::string const & val) ;
        ///
        void writeFile(std::ostream &, bool para = false) const;
        ///
-       string const writeEnvirBegin() const;
+       std::string const writeEnvirBegin() const;
        ///
-       string const writeEnvirEnd() const;
+       std::string const writeEnvirEnd() const;
 
 private:
        ///
@@ -66,7 +66,7 @@ private:
        ///
        float value;
        /// names of line spacing
-       static string const spacing_string[];
+       static std::string const spacing_string[];
 };