X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fanalogsignal.hpp;h=a27f669681659f61c84cb7a7c737d00a5b17752a;hp=fa1058311f08a8f1ab906584ba65be2b75769983;hb=6f925ba9d6faf1077b73c5a5808259576081716a;hpb=00f6bae935837b38b0d03a5928ba8175d460413f diff --git a/pv/view/analogsignal.hpp b/pv/view/analogsignal.hpp index fa10583..a27f669 100644 --- a/pv/view/analogsignal.hpp +++ b/pv/view/analogsignal.hpp @@ -26,6 +26,9 @@ #include +using std::pair; +using std::shared_ptr; + namespace pv { namespace data { @@ -53,12 +56,11 @@ private: static const int InfoTextMarginRight, InfoTextMarginBottom; public: - AnalogSignal(pv::Session &session, - std::shared_ptr base); + AnalogSignal(pv::Session &session, shared_ptr base); virtual ~AnalogSignal() = default; - std::shared_ptr data() const; + shared_ptr data() const; virtual void save_settings(QSettings &settings) const; @@ -68,7 +70,7 @@ public: * Computes the vertical extents of the contents of this row item. * @return A pair containing the minimum and maximum y-values. */ - std::pair v_extents() const; + pair v_extents() const; /** * Returns the offset to show the drag handle. @@ -111,12 +113,12 @@ private: void paint_grid(QPainter &p, int y, int left, int right); void paint_trace(QPainter &p, - const std::shared_ptr &segment, + const shared_ptr &segment, int y, int left, const int64_t start, const int64_t end, const double pixels_offset, const double samples_per_pixel); void paint_envelope(QPainter &p, - const std::shared_ptr &segment, + const shared_ptr &segment, int y, int left, const int64_t start, const int64_t end, const double pixels_offset, const double samples_per_pixel);