roviz  0.7
Code Documentation of roviz
item_templates_view.h
1 #ifndef ITEMTEMPLATESVIEW_H
2 #define ITEMTEMPLATESVIEW_H
3 
4 #include <QListView>
5 
6 class ItemTemplatesView : public QListView
7 {
8  Q_OBJECT
9 
10 public:
11  explicit ItemTemplatesView(QWidget* parent = nullptr);
12 
13 protected:
14  virtual void startDrag(Qt::DropActions supportedActions);
15 };
16 
17 #endif // ITEMTEMPLATESVIEW_H
Definition: item_templates_view.h:6