]> git.lyx.org Git - lyx.git/blobdiff - src/CursorSlice.h
Patch by Richard Heck:
[lyx.git] / src / CursorSlice.h
index daa2dc5815b4857feeadad8315cdd44c4884a555..a9326f1cce1b2d00bc6ad0918a4ff021b3dd7e02 100644 (file)
@@ -20,9 +20,6 @@
 #include "support/types.h"
 #include "insets/Inset.h"
 
-#include <boost/signal.hpp>
-#include <boost/signals/trackable.hpp>
-
 #include <cstddef>
 #include <iosfwd>
 
@@ -59,13 +56,7 @@ public:
        ///
        CursorSlice();
        ///
-       CursorSlice(CursorSlice const &);
-       ///
        explicit CursorSlice(Inset &);
-       ///
-       CursorSlice & operator=(CursorSlice const &);
-       ///
-       bool isValid() const;
 
        /// the current inset
        Inset & inset() const { return *inset_; }
@@ -131,8 +122,6 @@ public:
        /// write some debug information to \p os
        friend std::ostream & operator<<(std::ostream &, CursorSlice const &);
 private:
-       ///
-       void invalidate();
 
        /// pointer to 'owning' inset. This is some kind of cache.
        Inset * inset_;