Salome HOME
Integration of PAL/SALOME V2.1.0c from OCC
[modules/smesh.git] / src / SMESHDS / SMESHDS_Document.hxx
1 //  SMESH SMESHDS : management of mesh data and SMESH document
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   : SMESHDS_Document.hxx
25 //  Module : SMESH
26
27 #ifndef _SMESHDS_Document_HeaderFile
28 #define _SMESHDS_Document_HeaderFile
29
30 #include "SMESHDS_Mesh.hxx"
31 #include "SMESHDS_Hypothesis.hxx"
32 #include <map>
33
34
35 class SMESHDS_Document
36 {
37   public:
38         SMESHDS_Document(int UserID);
39         int NewMesh();
40         void RemoveMesh(int MeshID);
41         SMESHDS_Mesh * GetMesh(int MeshID);
42         void AddHypothesis(SMESHDS_Hypothesis * H);
43         void RemoveHypothesis(int HypID);
44         SMESHDS_Hypothesis * GetHypothesis(int HypID);
45         int NbMeshes();
46         int NbHypothesis();
47         void InitMeshesIterator();
48         SMESHDS_Mesh * NextMesh();
49         bool MoreMesh();        
50         void InitHypothesisIterator();
51         SMESHDS_Hypothesis * NextHypothesis();
52         bool MoreHypothesis();  
53          ~SMESHDS_Document();
54
55   private:
56         int myUserID;
57         std::map<int,SMESHDS_Mesh*> myMeshes;
58         std::map<int,SMESHDS_Hypothesis*> myHypothesis;
59         std::map<int,SMESHDS_Mesh*>::iterator myMeshesIt;
60         std::map<int,SMESHDS_Hypothesis*>::iterator myHypothesisIt;
61 };
62
63 #endif