Salome HOME
Merge branch 'BR_HYDRO_IMPS_WIN' of ssh://gitolite3@git.salome-platform.org/modules...
[modules/hydro.git] / src / HYDROPy / HYDROData_Bathymetry.sip
index e23029181dddbc9b9476af8227dab068511e0733..0c78ace313722d45a7bddb5d99a97bb9aa98a54d 100644 (file)
@@ -35,8 +35,14 @@ class HYDROData_Bathymetry : public HYDROData_IAltitudeObject
     }
 %End
 
-  typedef gp_XYZ                       AltitudePoint;
-  typedef NCollection_Sequence<gp_XYZ> AltitudePoints;
+public:
+  struct AltitudePoint
+  {
+    double X;
+    double Y;
+    double Z;
+  };
+  typedef std::vector<HYDROData_Bathymetry::AltitudePoint> AltitudePoints;
 
 
 %TypeHeaderCode
@@ -53,7 +59,8 @@ public:
   void SetAltitudesInverted( const bool theIsInverted, const bool theIsUpdate = true );
   bool IsAltitudesInverted() const;
 
-  bool ImportFromFile( const TCollection_AsciiString& theFileName );
+  bool ImportFromFiles( const QStringList& theFileNames );
+  bool ImportFromFile( const QString& theFileName );
 
 protected:
   HYDROData_Bathymetry();