Salome HOME
Some forgotten return statments
[modules/smesh.git] / src / OBJECT / SMESH_Grid.h
1 //  SMESH OBJECT : interactive object for SMESH visualization
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SMESH_Grid.h
25 //  Author : Nicolas REJNERI
26 //  Module : SMESH
27 //  $Header$
28
29 #ifndef SMESH_GRID_H
30 #define SMESH_GRID_H
31
32 // VTK Includes
33 #include <vtkUnstructuredGrid.h>
34
35 // Open CASCADE Includes
36 #include <TColStd_DataMapOfIntegerInteger.hxx>
37
38 class SMESH_Grid : public vtkUnstructuredGrid {
39
40  public:
41   vtkTypeMacro(SMESH_Grid, vtkUnstructuredGrid);
42
43   static SMESH_Grid* New();
44
45   void ClearNode();
46   void ClearElement();
47
48   void RemoveNode(int idSMESHDSnode);
49   void RemoveElement(int idSMESHDSelement);
50
51   void AddNode(int idSMESHDSnode, int idVTKnode);
52   void AddElement(int idSMESHDSelement, int idVTKelement);
53
54   int GetIdVTKNode(int idSMESHDSnode);
55   int GetIdVTKElement(int idSMESHDSelement);
56
57   int GetIdSMESHDSNode(int idVTKnode);
58   int GetIdSMESHDSElement(int idVTKelement);
59
60   void SetIdsVTKNode(const TColStd_DataMapOfIntegerInteger& mapVTK);
61   void SetIdsSMESHDSNode(const TColStd_DataMapOfIntegerInteger& mapSMESHDS);
62
63   void SetIdsVTKElement(const TColStd_DataMapOfIntegerInteger& mapVTK);
64   void SetIdsSMESHDSElement(const TColStd_DataMapOfIntegerInteger& mapSMESHDS);
65
66   virtual void DeepCopy (vtkDataObject *src);
67   void CopyMaps(SMESH_Grid *src);
68
69  protected:
70   SMESH_Grid() : vtkUnstructuredGrid() {};
71
72   TColStd_DataMapOfIntegerInteger myMapNodeVTKtoSMDS;
73   TColStd_DataMapOfIntegerInteger myMapNodeSMDStoVTK;
74
75   TColStd_DataMapOfIntegerInteger myMapElementVTKtoSMDS;
76   TColStd_DataMapOfIntegerInteger myMapElementSMDStoVTK;
77 };
78
79 #endif