Don't use std:: in the code directly (where possible).
[pulseview.git] / pv / view / tracetreeitem.hpp
index ed0e7e8d9cad521f915803d29ceaadd8184a2a14..d1dd67ccfc7bcbb2ca464f432a770025e1af3af9 100644 (file)
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifndef PULSEVIEW_PV_VIEW_TRACETREEITEM_HPP
-#define PULSEVIEW_PV_VIEW_TRACETREEITEM_HPP
+#ifndef PULSEVIEW_PV_VIEWS_TRACEVIEW_TRACETREEITEM_HPP
+#define PULSEVIEW_PV_VIEWS_TRACEVIEW_TRACETREEITEM_HPP
 
 #include <memory>
 
 
 #include "rowitem.hpp"
 
+using std::enable_shared_from_this;
+using std::pair;
+
 namespace pv {
-namespace view {
+namespace views {
+namespace TraceView {
 
 class TraceTreeItemOwner;
 
 class TraceTreeItem : public RowItem,
-       public std::enable_shared_from_this<pv::view::TraceTreeItem>
+       public enable_shared_from_this<TraceTreeItem>
 {
        Q_OBJECT
        Q_PROPERTY(int visual_v_offset
@@ -47,7 +50,7 @@ public:
        TraceTreeItem();
 
        /**
-        * Gets the owner this item in the view item hierachy.
+        * Gets the owner of this item in the view item hierachy.
         */
        TraceTreeItemOwner* owner() const;
 
@@ -91,7 +94,7 @@ public:
         * Sets the owner this trace in the view trace hierachy.
         * @param The new owner of the trace.
         */
-       void set_owner(pv::view::TraceTreeItemOwner *owner);
+       void set_owner(TraceTreeItemOwner *owner);
 
        /**
         * Gets the visual y-offset of the axis.
@@ -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<int, int> v_extents() const = 0;
+       virtual pair<int, int> v_extents() const = 0;
 
 protected:
        TraceTreeItemOwner *owner_;
@@ -136,7 +139,8 @@ private:
        QPropertyAnimation v_offset_animation_;
 };
 
-} // namespace view
+} // namespace TraceView
+} // namespace views
 } // namespace pv
 
-#endif // PULSEVIEW_PV_VIEW_TRACETREEITEM_HPP
+#endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_TRACETREEITEM_HPP