]> git.lyx.org Git - lyx.git/blobdiff - src/tex2lyx/dummy_impl.cpp
support for Georgian
[lyx.git] / src / tex2lyx / dummy_impl.cpp
index b20db6d9d6daad8053f80d04dfbbdaaa584041aa..9e9c3107292c563fc7286b4d3d2db4f9dc1aa10b 100644 (file)
@@ -21,6 +21,7 @@
 #include "Format.h"
 #include "LaTeXFeatures.h"
 #include "LyXRC.h"
+#include "output_xhtml.h"
 
 #include "support/Messages.h"
 
@@ -115,6 +116,27 @@ bool LaTeXFeatures::isAvailable(string const &)
 }
 
 
+string alignmentToCSS(LyXAlignment)
+{
+       return string();
+}
+
+//
+// Dummy FontMetrics (needed by Length)
+//
+
+
+class FontMetrics {
+       int em() const { return 0; };
+};
+
+class FontInfo;
+
+FontMetrics const & theFontMetrics(FontInfo const &) {
+       static FontMetrics dummy;
+       return dummy;
+}
+
 //
 // Keep the linker happy on Windows
 //