X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Ftracetreeitem.hpp;h=d1dd67ccfc7bcbb2ca464f432a770025e1af3af9;hp=cc329121ffcebdf842348c1903ad2b3e190b5f8e;hb=6f925ba9d6faf1077b73c5a5808259576081716a;hpb=00f6bae935837b38b0d03a5928ba8175d460413f diff --git a/pv/view/tracetreeitem.hpp b/pv/view/tracetreeitem.hpp index cc32912..d1dd67c 100644 --- a/pv/view/tracetreeitem.hpp +++ b/pv/view/tracetreeitem.hpp @@ -26,6 +26,9 @@ #include "rowitem.hpp" +using std::enable_shared_from_this; +using std::pair; + namespace pv { namespace views { namespace TraceView { @@ -33,7 +36,7 @@ namespace TraceView { class TraceTreeItemOwner; class TraceTreeItem : public RowItem, - public std::enable_shared_from_this + public enable_shared_from_this { Q_OBJECT Q_PROPERTY(int visual_v_offset @@ -122,7 +125,7 @@ public: * Computes the vertical extents of the contents of this row item. * @return A pair containing the minimum and maximum y-values. */ - virtual std::pair v_extents() const = 0; + virtual pair v_extents() const = 0; protected: TraceTreeItemOwner *owner_;