Salome HOME
SIP files revision
[modules/hydro.git] / src / HYDROPy / HYDROData_Bathymetry.sip
index d9e4e10828ea9bc39732ad14cfc929382d60f2b9..e23029181dddbc9b9476af8227dab068511e0733 100644 (file)
@@ -44,62 +44,19 @@ class HYDROData_Bathymetry : public HYDROData_IAltitudeObject
 %End
 
 public:      
-  // Public methods to work with Bathymetry altitudes.
-
-  /**
-   * Replace current altitude points by new one.
-   * \param thePoints the altitude points list
-   */
-  virtual void             SetAltitudePoints( const HYDROData_Bathymetry::AltitudePoints& );
-
-  /**
-   * Returns altitude points list.
-   * \return points list
-   */
+  virtual void SetAltitudePoints( const HYDROData_Bathymetry::AltitudePoints& );
   HYDROData_Bathymetry::AltitudePoints GetAltitudePoints() const;
 
-  /**
-   * Remove all altitude points.
-   */
-  void             RemoveAltitudePoints();
-
+  void RemoveAltitudePoints();
 
 public:
-  // Public methods to work with files.
-
-  /**
-   * Set flag indicating needs to invert altitude values
-   * \param theIsInverted new invert value
-   * \param theIsUpdate flag indicating necessity to update points
-   */
-  void             SetAltitudesInverted( const bool theIsInverted,
-                                         const bool theIsUpdate = true );
-
-  /**
-   * Returns flag indicating needs to invert altitude values.
-   */
-  bool             IsAltitudesInverted() const;
-
-  /**
-   * Imports Bathymetry data from file. The supported file types:
-   *  - xyz
-   * \param theFileName the path to file
-   * \return \c true if file has been successfully read
-   */
-  bool             ImportFromFile( const TCollection_AsciiString& theFileName );
+  void SetAltitudesInverted( const bool theIsInverted, const bool theIsUpdate = true );
+  bool IsAltitudesInverted() const;
 
+  bool ImportFromFile( const TCollection_AsciiString& theFileName );
 
 protected:
-
-  /**
-   * Creates new object in the internal data structure. Use higher level objects 
-   * to create objects with real content.
-   */
   HYDROData_Bathymetry();
-
-  /**
-   * Destructs properties of the object and object itself, removes it from the document.
-   */
   ~HYDROData_Bathymetry();
 };