]> git.lyx.org Git - lyx.git/blobdiff - src/Spacing.h
code cosmetics to the iterator fix
[lyx.git] / src / Spacing.h
index 4d25b3fd9684d8872bf44ed32b1a2d271892fbbb..617ec9269e2d92e57bec69118705395de12b90a5 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,6 +13,7 @@
 #define SPACING_H
 
 #include <iosfwd>
+#include <string>
 
 
 ///
@@ -32,9 +33,9 @@ public:
                Default
        };
        ///
-       Spacing() : space(Default), value(1.0) {}
+       Spacing() : space(Default), value("1.0") {}
        ///
-       Spacing(Spacing::Space sp, float val = 1.0) {
+       Spacing(Spacing::Space sp, double val = 1.0) {
                set(sp, val);
        }
        Spacing(Spacing::Space sp, std::string const & val) {
@@ -45,13 +46,15 @@ public:
                return space == Default;
        }
        ///
-       float getValue() const;
+       std::string const getValueAsString() const;
+       ///
+       double getValue() const;
        ///
        Spacing::Space getSpace() const { return space; }
        ///
-       void set(Spacing::Space sp, float val = 1.0);
+       void set(Spacing::Space sp, double val = 1.0);
        ///
-       void set(Spacing::Space sp, std::string const & val) ;
+       void set(Spacing::Space sp, std::string const & val);
        ///
        void writeFile(std::ostream &, bool para = false) const;
        ///
@@ -63,7 +66,7 @@ private:
        ///
        Space space;
        ///
-       float value;
+       std::string value;
        /// names of line spacing
        static std::string const spacing_string[];
 };
@@ -74,7 +77,7 @@ inline
 bool operator==(Spacing const & a, Spacing const & b)
 {
        return a.getSpace() == b.getSpace()
-               && a.getValue() == b.getValue();
+               && a.getValueAsString() == b.getValueAsString();
 }
 
 ///