Salome HOME
new files for dialog and operation
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_Operation.h
1 //  SALOME SMESHGUI
2 //
3 //  Copyright (C) 2005  CEA/DEN, EDF R&D
4 //
5 //
6 //
7 //  File   : SMESHGUI_Operation.h
8 //  Author : Sergey LITONIN
9 //  Module : SALOME
10
11
12 #ifndef SMESHGUI_Operation_H
13 #define SMESHGUI_Operation_H
14
15 #include <SalomeApp_Operation.h>
16
17 /*
18   Class       : SMESHGUI_Operation
19   Description : Base class for all SMESH operations
20 */
21
22 class SMESHGUI_Operation : public SalomeApp_Operation
23 {
24   Q_OBJECT
25
26 public:
27
28   SMESHGUI_Operation( SalomeApp_Application* );
29   virtual ~SMESHGUI_Operation();
30
31 };
32
33 #endif
34
35
36
37
38
39