Salome HOME
Add some comments
[modules/smesh.git] / src / SMESH / SMESH_HypothesisCreator.hxx
1 //  SMESH SMESH : implementaion of SMESH idl descriptions
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_HypothesisCreator.hxx
25 //  Author : Paul RASCLE, EDF
26 //  Module : SMESH
27 //  $Header$
28
29 #ifndef _SMESH_HYPOTHESISCREATOR_HXX_
30 #define _SMESH_HYPOTHESISCREATOR_HXX_
31
32 #include  "SMESH_HypothesisFactory.hxx"
33
34 class SMESH_gen;
35
36 //=============================================================================
37 /*!
38  * Specific Hypothesis Creators are generated with a template which inherits a
39  * generic hypothesis creator. Each creator returns an hypothesis of the type
40  * given in the template. 
41  */
42 //=============================================================================
43
44 template <class T> class SMESH_HypothesisCreator
45   : public GenericHypothesisCreator
46 {
47 public:
48 //   map<int, T*> _instances;
49
50 //   virtual T* GetInstance(int hypId)
51 //   {
52 //     if (_instances.find(hypId) != _instances.end())
53 //       return _instances[hypId];
54 //     else
55 //       return NULL;
56 //   }
57
58   virtual T* Create (int hypId, int studyId, SMESH_Gen* gen)
59   {
60     T* anInstance=  new T(hypId, studyId, gen);
61 //     _gen->StoreHypothesisInstance(anInstance);
62 //     _instances[hypId] = anInstance;
63     return anInstance;
64   };
65 };
66
67
68 #endif