Salome HOME
First realisation of Cascade classes.
[modules/hydro.git] / src / HYDROPy / HYDROData_Bathymetry.sip
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 %ExportedHeaderCode
24 #include <HYDROData_Bathymetry.h>
25 %End
26
27 class HYDROData_Bathymetry : HYDROData_IAltitudeObject
28 {
29
30   typedef gp_XYZ                       AltitudePoint;
31   typedef NCollection_Sequence<gp_XYZ> AltitudePoints;
32
33 %ConvertToSubClassCode
34     switch ( sipCpp->GetKind() )
35     {
36       case KIND_BATHYMETRY:
37         sipClass = sipClass_HYDROData_Bathymetry;
38         break;
39
40       default:
41         // We don't recognise the type.
42         sipClass = NULL;
43     }
44 %End
45
46 %TypeHeaderCode
47 #include <HYDROData_Bathymetry.h>
48 %End
49
50 public:      
51   // Public methods to work with Bathymetry altitudes.
52
53   /**
54    * Returns altitude for given point.
55    * \param thePoint the point to examine
56    * \return altitude value
57    */
58   double           GetAltitudeForPoint( const gp_XY& thePoint );
59
60   /**
61    * Replace current altitude points by new one.
62    * \param thePoints the altitude points list
63    */
64   virtual void             SetAltitudePoints( const HYDROData_Bathymetry::AltitudePoints& );
65
66   /**
67    * Returns altitude points list.
68    * \return points list
69    */
70   HYDROData_Bathymetry::AltitudePoints GetAltitudePoints() const;
71
72   /**
73    * Remove all altitude points.
74    */
75   void              RemoveAltitudePoints();
76
77
78 public:
79   // Public methods to work with files.
80
81   /**
82    * Imports Bathymetry data from file. The supported file types:
83    *  - xyz
84    * \param theFileName the path to file
85    * \return \c true if file has been successfully read
86    */
87   bool             ImportFromFile( const QString& theFileName );
88
89
90 protected:
91
92   /**
93    * Creates new object in the internal data structure. Use higher level objects 
94    * to create objects with real content.
95    */
96   HYDROData_Bathymetry();
97
98   /**
99    * Destructs properties of the object and object itself, removes it from the document.
100    */
101   ~HYDROData_Bathymetry();
102 };
103
104