0023095: Porting demo and samples on OCCT 6.5.3
[occt.git] / samples / qt / Tutorial / src / DocumentTut.h
CommitLineData
7fd59977 1#ifndef DOCUMENTTUT_H
2#define DOCUMENTTUT_H
3
4#include "DocumentCommon.h"
5#include <Geom_BSplineSurface.hxx>
6
7class SurfConstruction;
8class ApplicationCommon;
9
10class DocumentTut : public DocumentCommon
11{
12 Q_OBJECT
13
14public:
15 DocumentTut( const int, ApplicationCommonWindow* );
16 ~DocumentTut();
17
18 void onMakeBottle();
19
20private:
21 SurfConstruction* mySurfConstructor;
22};
23
24#endif