Salome HOME
Mise a jour du plugin Hexa 6
[plugins/hexablockplugin.git] / src / HEXABLOCKPlugin / HEXABLOCKPlugin_i.cxx
1 // Copyright (C) 2009-2013  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 //  SMESH HEXABLOCKPlugin : implementaion of SMESH idl descriptions
21 //  File   : HEXABLOCKPlugin.cxx
22 //  Author : Lioka RAZAFINDRAZAKA (CEA)
23 //  Module : SMESH
24 //
25 #include "SMESH_Hypothesis_i.hxx"
26
27 #include "utilities.h"
28
29 #include "HEXABLOCKPlugin_HEXABLOCK_i.hxx"
30 #include "HEXABLOCKPlugin_Hypothesis_i.hxx"
31
32 #include "hexa_base.hxx"
33
34 #ifdef _DEBUG_
35 static int MYDEBUG = HEXA_NS::on_debug ();
36 #else
37 static int MYDEBUG = 0;
38 #endif
39
40
41 using namespace std;
42
43 template <class T> class HEXABLOCKPlugin_Creator_i:public HypothesisCreator_i<T>
44 {
45   // as we have 'module HEXABLOCKPlugin' in HEXABLOCKPlugin_Algorithm.idl
46   virtual std::string GetModuleName() { return "HEXABLOCKPlugin"; }
47 };
48
49 //=============================================================================
50 /*!
51  *
52  */
53 //=============================================================================
54
55 extern "C"
56 {
57   HEXABLOCKPLUGIN_EXPORT
58   GenericHypothesisCreator_i* GetHypothesisCreator (const char* aHypName)
59   {
60     if(MYDEBUG) MESSAGE("GetHypothesisCreator " << aHypName);
61
62     GenericHypothesisCreator_i* aCreator = 0;
63
64     // Hypotheses
65
66     // Algorithm
67     if (strcmp(aHypName, "HEXABLOCK_3D") == 0)
68       aCreator = new HEXABLOCKPlugin_Creator_i<HEXABLOCKPlugin_HEXABLOCK_i>;
69     // Hypothesis
70     else if (strcmp(aHypName, "HEXABLOCK_Parameters") == 0)
71       aCreator = new HEXABLOCKPlugin_Creator_i<HEXABLOCKPlugin_Hypothesis_i>;
72     else ;
73
74     return aCreator;
75   }
76 }