X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROPy%2FHYDROData_Bathymetry.sip;h=0c78ace313722d45a7bddb5d99a97bb9aa98a54d;hb=58bb6b7459bebeeb089c9ed486c4683a8bae7288;hp=e23029181dddbc9b9476af8227dab068511e0733;hpb=e21917fc95a996d4226068eb38354ea58e4f4c66;p=modules%2Fhydro.git diff --git a/src/HYDROPy/HYDROData_Bathymetry.sip b/src/HYDROPy/HYDROData_Bathymetry.sip index e2302918..0c78ace3 100644 --- a/src/HYDROPy/HYDROData_Bathymetry.sip +++ b/src/HYDROPy/HYDROData_Bathymetry.sip @@ -35,8 +35,14 @@ class HYDROData_Bathymetry : public HYDROData_IAltitudeObject } %End - typedef gp_XYZ AltitudePoint; - typedef NCollection_Sequence AltitudePoints; +public: + struct AltitudePoint + { + double X; + double Y; + double Z; + }; + typedef std::vector 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();