]> git.lyx.org Git - lyx.git/blobdiff - src/lyxcursor.C
Collapse all those LFUN_XYZ_APPLY to a single LFUN_INSET_APPLY.
[lyx.git] / src / lyxcursor.C
index 47489a0fddea40b4c763a51bca35ab398dea20fd..5e2d020102984596b071fb847575cb7870fa13d9 100644 (file)
@@ -1,19 +1,13 @@
-/* This file is part of
- * ======================================================
+/**
+ * \file lyxcursor.C
+ * Copyright 1995-2001 the LyX Team
+ * Read the file COPYING
  *
- *           LyX, The Document Processor
- *
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2001 The LyX Team.
- *
- * ====================================================== */
+ * \author Matthias Ettrich
+ */
 
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
 #include "lyxcursor.h"
 
 
@@ -127,3 +121,15 @@ Row * LyXCursor::row() const
 {
        return row_;
 }
+
+
+void LyXCursor::irow(Row * r)
+{
+       irow_ = r;
+}
+
+
+Row * LyXCursor::irow() const
+{
+       return irow_;
+}