Salome HOME
Fix for the bug #45: check and warning when the same image is used in 2 arguments.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ImportBathymetryOp.h
index 850ef425e66ca0553abddda48663ec70622c37bc..cdf6a39b455a07a6dfc3328ea7f4ccb95a4336bd 100644 (file)
 
 #include "HYDROGUI_Operation.h"
 
+#include <HYDROData_Bathymetry.h>
+
 
 class HYDROGUI_ImportBathymetryOp : public HYDROGUI_Operation
 {
   Q_OBJECT
 
 public:
-  HYDROGUI_ImportBathymetryOp( HYDROGUI_Module* theModule );
+  HYDROGUI_ImportBathymetryOp( HYDROGUI_Module* theModule, const bool theIsEdit  );
   virtual ~HYDROGUI_ImportBathymetryOp();
 
 protected:
@@ -48,6 +50,8 @@ protected slots:
   void                            onFileSelected();
 
 private:
+  bool                            myIsEdit;
+  Handle(HYDROData_Bathymetry)    myEditedObject;
 };
 
 #endif