]> SALOME platform Git repositories - modules/gui.git/blob - src/CAF/CAF_Operation.h
Salome HOME
0991bad652ca4bb2b3f5dc90625c2b27de1bb9d2
[modules/gui.git] / src / CAF / CAF_Operation.h
1 #ifndef CAF_OPERATION_H
2 #define CAF_OPERATION_H
3
4 #include "CAF.h"
5
6 #include "SUIT_Operation.h"
7
8 #include <qobject.h>
9 #include <qstring.h>
10
11 #include <Standard.hxx>
12
13 class CAF_Study;
14 class Handle(TDocStd_Document);
15
16 class CAF_EXPORT CAF_Operation : public SUIT_Operation
17 {
18         Q_OBJECT
19
20 public:
21         CAF_Operation( SUIT_Application* );
22         virtual ~CAF_Operation();
23
24 protected:
25   Handle(TDocStd_Document) stdDoc() const;
26 };
27
28 #endif