mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-07 18:30:55 +03:00
31 lines
473 B
C++
Executable File
31 lines
473 B
C++
Executable File
#ifndef APPLICATIONTUT_H
|
|
#define APPLICATIONTUT_H
|
|
|
|
#include "DocumentTut.h"
|
|
#include "ApplicationCommon.h"
|
|
|
|
class ApplicationTut: public ApplicationCommonWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
ApplicationTut();
|
|
~ApplicationTut();
|
|
|
|
static QString getTutResourceDir();
|
|
virtual void updateFileActions();
|
|
|
|
public slots:
|
|
|
|
void onMakeBottleAction();
|
|
|
|
private:
|
|
void createMakeBottleOperation();
|
|
|
|
private:
|
|
QToolBar* myMakeBottleBar;
|
|
};
|
|
|
|
#endif
|