Integration of OCCT 6.5.0 from SVN
[occt.git] / samples / qt / Tutorial / src / ApplicationTut.h
1 #ifndef APPLICATIONTUT_H
2 #define APPLICATIONTUT_H
3
4 #include "DocumentTut.h"
5 #include "ApplicationCommon.h"
6
7 class ApplicationTut: public ApplicationCommonWindow
8 {
9     Q_OBJECT
10
11 public:
12         
13   ApplicationTut();
14   ~ApplicationTut();
15
16   static QString    getTutResourceDir();
17   virtual void      updateFileActions();
18
19 public slots:
20         
21         void                                                    onMakeBottleAction();
22
23 private:
24         void              createMakeBottleOperation();
25
26 private:
27         QToolBar*                                       myMakeBottleBar;
28 };
29
30 #endif