]> git.lyx.org Git - lyx.git/blobdiff - src/tex2lyx/Spacing.h
Added FontInfo.cpp to tex2lyx sources to make it compilable again
[lyx.git] / src / tex2lyx / Spacing.h
index cf1faa59a2f91cc43dc5b13a5b216f34c200535d..c4254608928141b57c1f223699118cd1e39a8adb 100644 (file)
  * re-invent the wheel.
  */
 
-#ifndef SPACING_H
-#define SPACING_H
+#ifndef TEX2LYX_SPACING_H
+#define TEX2LYX_SPACING_H
+
+#include <string>
+
+
+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