Salome HOME
Parameters annotation corrected.
[modules/hydro.git] / src / HYDROPy / HYDROData_Profile.sip
index 41ec2f786f4bfaf63a1c8fb66e5646dad204482a..11c9a2a8286ca0d417a246385a95797e1fcd38f9 100644 (file)
 
 class HYDROData_Profile : public HYDROData_Object
 {
+%TypeHeaderCode
+#include "HYDROData_Profile.h"
+%End
 public:
 
   typedef gp_XYZ                       ProfilePoint;
   typedef NCollection_Sequence<gp_XYZ> 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<int>&        theBadProfilesIds )
-  [int ( const Handle_HYDROData_Document& ,
-         const TCollection_AsciiString&    ,
-         NCollection_Sequence<int>&         )];
+  static int ImportFromFile( HYDROData_Document             theDoc,
+                             const TCollection_AsciiString& theFileName,
+                             NCollection_Sequence<int>&     theBadProfilesIds )
+  [int ( const Handle_HYDROData_Document&,
+         const TCollection_AsciiString&,
+         NCollection_Sequence<int>& )];
   %MethodCode
     Py_BEGIN_ALLOW_THREADS
-    sipRes = HYDROData_Profile::ImportFromFile( a0, *a1, a2 );
+    sipRes = HYDROData_Profile::ImportFromFile( a0, *a1, *a2 );
     Py_END_ALLOW_THREADS
   %End