X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ftex2lyx%2FSpacing.h;h=c4254608928141b57c1f223699118cd1e39a8adb;hb=e4c9689906e05c94116feea53ff29ad00a0e5a0b;hp=fb25d35f501fe426cfe0a2fcb308bf59a9d76314;hpb=0be0fcfd5907d448cd51addf83ed7032719a0692;p=lyx.git diff --git a/src/tex2lyx/Spacing.h b/src/tex2lyx/Spacing.h index fb25d35f50..c425460892 100644 --- a/src/tex2lyx/Spacing.h +++ b/src/tex2lyx/Spacing.h @@ -1,6 +1,6 @@ // -*- C++ -*- /** - * \file Spacing.h + * \file tex2lyx/Spacing.h * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * @@ -13,8 +13,13 @@ * re-invent the wheel. */ -#ifndef SPACING_H -#define SPACING_H +#ifndef TEX2LYX_SPACING_H +#define TEX2LYX_SPACING_H + +#include + + +namespace lyx { class Spacing { public: @@ -26,8 +31,13 @@ public: Other, Default }; - - void set(Spacing::Space, float = 1.0) {} + /// + void set(Spacing::Space, double = 1.0) {} + /// + void set(Spacing::Space, std::string const &) {} }; -#endif // NOT SPACING_H + +} // namespace lyx + +#endif // TEX2LYX_SPACING_H