X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROPy%2FHYDROData_Profile.sip;h=11c9a2a8286ca0d417a246385a95797e1fcd38f9;hb=6450e251d00e2beaa02e0de026b0f1af2b948a0e;hp=41ec2f786f4bfaf63a1c8fb66e5646dad204482a;hpb=74c349623c1fc536161c7ab555c2cdb878f61644;p=modules%2Fhydro.git diff --git a/src/HYDROPy/HYDROData_Profile.sip b/src/HYDROPy/HYDROData_Profile.sip index 41ec2f78..11c9a2a8 100644 --- a/src/HYDROPy/HYDROData_Profile.sip +++ b/src/HYDROPy/HYDROData_Profile.sip @@ -26,15 +26,14 @@ class HYDROData_Profile : public HYDROData_Object { +%TypeHeaderCode +#include "HYDROData_Profile.h" +%End public: typedef gp_XYZ ProfilePoint; typedef NCollection_Sequence ProfilePoints; -%TypeHeaderCode -#include "HYDROData_Profile.h" -%End - public: /** * Returns default filling color for new profile. @@ -143,14 +142,14 @@ public: * First and last points will be automatically updated. * \param thePoints the list with new profile points */ - void SetProfilePoints( const ProfilePoints thePoints ); + void SetProfilePoints( const HYDROData_Profile::ProfilePoints thePoints ); /** * Returns profile points. * Empty sequence is returned if first or last point was not set. * \return profile points list */ - ProfilePoints GetProfilePoints() const; + HYDROData_Profile::ProfilePoints GetProfilePoints() const; public: @@ -175,15 +174,15 @@ public: * \param theFileName the path to file * \return \c number of successfully imported profiles */ - static int ImportFromFile( const HYDROData_Document theDoc, - const TCollection_AsciiString& theFileName, - NCollection_Sequence& theBadProfilesIds ) - [int ( const Handle_HYDROData_Document& , - const TCollection_AsciiString& , - NCollection_Sequence& )]; + static int ImportFromFile( HYDROData_Document theDoc, + const TCollection_AsciiString& theFileName, + NCollection_Sequence& theBadProfilesIds ) + [int ( const Handle_HYDROData_Document&, + const TCollection_AsciiString&, + NCollection_Sequence& )]; %MethodCode Py_BEGIN_ALLOW_THREADS - sipRes = HYDROData_Profile::ImportFromFile( a0, *a1, a2 ); + sipRes = HYDROData_Profile::ImportFromFile( a0, *a1, *a2 ); Py_END_ALLOW_THREADS %End