Salome HOME
refs #611: redesign of the polylines extraction
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ExportFileOp.h
index ed9baa99d37f9b711cfda1a276d645e077cdaf80..65f42b8b0ee2fd63a3e896204c377b2c9a894723 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
@@ -47,14 +42,9 @@ public:
 
 protected:
   virtual void startOperation();
-  void WriteObjectPolyXY(SHPHandle theShpHandle, Handle_HYDROData_PolylineXY thePoly );
-  void WriteObjectPoly3D(SHPHandle theShpHandle, Handle_HYDROData_Polyline3D thePoly );
-  void WriteObjectLC(SHPHandle theShpHandle, Handle_HYDROData_LandCover theLC );
-private:
-  void ProcessFace(TopoDS_Face theFace, SHPHandle theShpHandle);
+
  private:
   SUIT_FileDlg* myFileDlg;
-  std::vector<SHPObject*> mySHPObjects;
 };
 
 #endif