Salome HOME
Import of shapefile - bug fixes; #refs 614
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ExportFileOp.h
index abab9c298f46841f28da1cba6491089826748347..d5884f5856cde712efd561e7a216e2316e045dd1 100644 (file)
 #include "HYDROGUI_Operation.h"
 #include <vector>
 
-//extern "C" {
-#include <shapelib/shapefil.h> 
-//};
-
 class SUIT_FileDlg;
 class gp_XYZ;
 class Handle_HYDROData_PolylineXY;
 class Handle_HYDROData_Polyline3D;
+class Handle_HYDROData_LandCover;
+class TopoDS_Face;
 
 class HYDROGUI_ExportFileOp : public HYDROGUI_Operation
 {
@@ -45,11 +43,9 @@ public:
 
 protected:
   virtual void startOperation();
-  void WriteObjectPolyXY(SHPHandle theShpHandle, Handle_HYDROData_PolylineXY thePoly );
-  void WriteObjectPoly3D(SHPHandle theShpHandle, Handle_HYDROData_Polyline3D thePoly );
+
  private:
   SUIT_FileDlg* myFileDlg;
-  std::vector<SHPObject*> mySHPObjects;
 };
 
 #endif