TAMSVIZ
Visualization and annotation tool for ROS
displaytree.h
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #pragma once
5 
6 #include "guicommon.h"
7 
8 class Object;
9 
10 class DisplayTreeWidget : public QDockWidget {
11  TreeWidget *view = nullptr;
12  std::vector<
13  std::pair<std::weak_ptr<Object>, std::shared_ptr<QTreeWidgetItem>>>
14  items;
15  void sync();
16  bool updating = false;
17 
18 public:
21 };
Definition: object.h:8