1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-06 18:26:22 +03:00
occt/samples/qt/Tutorial/src/DocumentTut.h
2012-03-05 19:23:40 +04:00

25 lines
413 B
C++
Executable File

#ifndef DOCUMENTTUT_H
#define DOCUMENTTUT_H
#include "DocumentCommon.h"
#include <Geom_BSplineSurface.hxx>
class SurfConstruction;
class ApplicationCommon;
class DocumentTut : public DocumentCommon
{
Q_OBJECT
public:
DocumentTut( const int, ApplicationCommonWindow* );
~DocumentTut();
void onMakeBottle();
private:
SurfConstruction* mySurfConstructor;
};
#endif