X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fcursorpair.h;h=6c56dcd71dc89499dc8a5eceecd6593f43be1a85;hp=815276e24c0ca997faf2af5e780da632cb6108eb;hb=f9abf97e78bc4825d80926b0ebc6cbaef40768b1;hpb=d9aecf1fcd9af471db3b59de7efc65b9632a6d79 diff --git a/pv/view/cursorpair.h b/pv/view/cursorpair.h index 815276e..6c56dcd 100644 --- a/pv/view/cursorpair.h +++ b/pv/view/cursorpair.h @@ -23,7 +23,7 @@ #include "cursor.h" -#include +#include #include @@ -47,12 +47,12 @@ public: /** * Returns a pointer to the first cursor. */ - boost::shared_ptr first() const; + std::shared_ptr first() const; /** * Returns a pointer to the second cursor. */ - boost::shared_ptr second() const; + std::shared_ptr second() const; public: QRectF get_label_rect(const QRect &rect) const; @@ -69,7 +69,7 @@ public: std::pair get_cursor_offsets() const; private: - boost::shared_ptr _first, _second; + std::shared_ptr _first, _second; const View &_view; QSizeF _text_size;