mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-06 18:26:22 +03:00
25 lines
413 B
C++
Executable File
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
|