Make member variable underscores a suffix instead of a prefix
[pulseview.git] / pv / view / cursorpair.h
index 2e70f7da92b9dca7dec6770713624aefa8cf8b8c..f7eb51cacaabe9a79cf2d715c487eed94f5ab222 100644 (file)
@@ -23,7 +23,7 @@
 
 #include "cursor.h"
 
-#include <boost/shared_ptr.hpp>
+#include <memory>
 
 #include <QPainter>
 
@@ -42,17 +42,17 @@ public:
         * Constructor.
         * @param view A reference to the view that owns this cursor pair.
         */
-       CursorPair(const View &view);
+       CursorPair(View &view);
 
        /**
         * Returns a pointer to the first cursor.
         */
-       boost::shared_ptr<Cursor> first() const;
+       std::shared_ptr<Cursor> first() const;
 
        /**
         * Returns a pointer to the second cursor.
         */
-       boost::shared_ptr<Cursor> second() const;
+       std::shared_ptr<Cursor> second() const;
 
 public:
        QRectF get_label_rect(const QRect &rect) const;
@@ -69,10 +69,10 @@ public:
        std::pair<float, float> get_cursor_offsets() const;
 
 private:
-       boost::shared_ptr<Cursor> _first, _second;
-       const View &_view;
+       std::shared_ptr<Cursor> first_, second_;
+       const View &view_;
 
-       QSizeF _text_size;
+       QSizeF text_size_;
 };
 
 } // namespace view