]> git.lyx.org Git - lyx.git/blobdiff - src/lyxrow.h
fix "make dist" target
[lyx.git] / src / lyxrow.h
index 9da3170342946a616f99e1c04c768c614f563ee9..876a61cc44c3f8d12264bc2684fb0d9cd02ae10f 100644 (file)
 #ifndef LYXROW_H
 #define LYXROW_H
 
+#ifdef __GNUG__
+#pragma interface
+#endif
+
 #include "lyxparagraph.h"
 
 ///
@@ -79,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