Salome HOME
59404f65aed3736e8695903f0eb7bb3b24dc75bb
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_TwoImagesOp.h
1
2 #ifndef HYDROGUI_TWO_IMAGE_OP_HEADER
3 #define HYDROGUI_TWO_IMAGE_OP_HEADER
4
5 #include <HYDROGUI_Operation.h>
6
7 class HYDROGUI_TwoImagesOp : public HYDROGUI_Operation
8 {
9   Q_OBJECT
10
11 public:
12   HYDROGUI_TwoImagesOp( HYDROGUI_Module* theModule, const QString& theTitle );
13   virtual ~HYDROGUI_TwoImagesOp();
14
15 protected:
16   virtual HYDROGUI_InputPanel* createInputPanel() const;
17
18 protected slots:
19   virtual void OnApply();
20
21 private:
22   QString myTitle;
23 };
24
25 #endif