Salome HOME
Models for object browser created
[modules/shaper.git] / src / XGUI / XGUI_ObjectsBrowser.h
1
2 #ifndef XGUI_ObjectsBrowser_H
3 #define XGUI_ObjectsBrowser_H
4
5 #include <QTreeView>
6
7 class XGUI_DocumentDataModel;
8
9 class XGUI_ObjectsBrowser : public QTreeView
10 {
11   Q_OBJECT
12 public:
13   XGUI_ObjectsBrowser(QWidget* theParent);
14   virtual ~XGUI_ObjectsBrowser();
15
16   XGUI_DocumentDataModel* dataModel() const { return myDocModel; }
17
18 private:
19
20   XGUI_DocumentDataModel* myDocModel;
21 };
22
23 #endif