X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FSpacing.h;h=a78abb6c5a07668b416ac0840753c30d5f679ae2;hb=42eb8a373a35da02c45c0d225d37f5d677ddfc2d;hp=c9e4be9e41f486b1c2fbeda7ec3f1622cc1eb2ba;hpb=9d711c62fc352193ef2873000b872ebd203143f3;p=lyx.git diff --git a/src/Spacing.h b/src/Spacing.h index c9e4be9e41..a78abb6c5a 100644 --- a/src/Spacing.h +++ b/src/Spacing.h @@ -16,13 +16,12 @@ #include "tex2lyx/Spacing.h" #else -#include -#include +#include "support/strfwd.h" +#include namespace lyx { - /// class Spacing { public: @@ -42,16 +41,11 @@ public: /// Spacing() : space(Default), value("1.0") {} /// - Spacing(Spacing::Space sp, double val = 1.0) { - set(sp, val); - } - Spacing(Spacing::Space sp, std::string const & val) { - set(sp, val); - } + Spacing(Spacing::Space sp, double val = 1.0) { set(sp, val); } /// - bool isDefault() const { - return space == Default; - } + Spacing(Spacing::Space sp, std::string const & val) { set(sp, val); } + /// + bool isDefault() const { return space == Default; } /// std::string const getValueAsString() const; /// @@ -64,10 +58,15 @@ public: void set(Spacing::Space sp, std::string const & val); /// void writeFile(std::ostream &, bool para = false) const; - /// - std::string const writeEnvirBegin() const; - /// - std::string const writeEnvirEnd() const; + /// useSetSpace is true when using the variant supported by + /// the memoir class. + std::string const writeEnvirBegin(bool useSetSpace) const; + /// useSetSpace is true when using the variant supported by + /// the memoir class. + std::string const writeEnvirEnd(bool useSetSpace) const; + /// useSetSpace is true when using the variant supported by + /// the memoir class. + std::string const writePreamble(bool useSetSpace) const; private: ///