]> git.lyx.org Git - lyx.git/blobdiff - src/Spacing.h
update all .po files ot latestes pot
[lyx.git] / src / Spacing.h
index 094d7d3d1c9fd14cb2241632c2c7fce2daa7bff9..98f9463250fe4979d03906f0b7ac221aea6bb09e 100644 (file)
 #ifndef SPACING_H
 #define SPACING_H
 
+#ifdef __GNUG__
+#pragma interface
+#endif
+
 #include <iosfwd>
 
+#include "LString.h"
+
 ///
 class Spacing {
 public:
@@ -43,25 +49,33 @@ public:
        ///
        void set(Spacing::Space sp, float val = 1.0);
        ///
-       void set(Spacing::Space sp, char const * val) ;
+       void set(Spacing::Space sp, string const & val) ;
        ///
        void writeFile(std::ostream &, bool para = false) const;
        ///
-       friend bool operator==(Spacing const & a, Spacing const & b) {
-               if (a.space == b.space && a.getValue() == b.getValue())
-                       return true;
-               return false;
-       }
+       string const writeEnvirBegin() const;
        ///
-       friend bool operator!=(Spacing const & a, Spacing const & b) {
-               if (a.space == b.space && a.getValue() == b.getValue())
-                       return false;
-               return true;
-       }
+       string const writeEnvirEnd() const;
 private:
        ///
        Space space;
        ///
        float value;
 };
+
+
+///
+inline
+bool operator==(Spacing const & a, Spacing const & b)
+{
+       return a.getSpace() == b.getSpace()
+               && a.getValue() == b.getValue();
+}
+
+///
+inline
+bool operator!=(Spacing const & a, Spacing const & b)
+{
+       return !(a == b);
+}
 #endif