]> git.lyx.org Git - lyx.git/blobdiff - src/lyxrow.h
fix "make dist" target
[lyx.git] / src / lyxrow.h
index 108f925f415faada6a2162effbf4e58750594220..876a61cc44c3f8d12264bc2684fb0d9cd02ae10f 100644 (file)
@@ -83,4 +83,32 @@ private:
        Row * previous_;
 };
 
+
+inline
+LyXParagraph * Row::par()
+{
+       return par_;
+}
+
+
+inline
+LyXParagraph * Row::par() const
+{
+       return par_;
+}
+
+
+inline
+unsigned short Row::height() const
+{
+       return height_;
+}
+
+
+inline
+Row * Row::next() const
+{
+       return next_;
+}
+
 #endif