Salome HOME
bf92c54f2f3c8d2153cc0e9104ec62cd6c30f679
[plugins/ghs3dplugin.git] / src / GHS3DPlugin / GHS3DPlugin_i.cxx
1 // Copyright (C) 2004-2023  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, or (at your option) any later version.
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 #include "SMESH_Hypothesis_i.hxx"
21
22 #include "GHS3DPlugin_GHS3D_i.hxx"
23 #include "GHS3DPlugin_Hypothesis_i.hxx"
24 #include "GHS3DPlugin_OptimizerHypothesis_i.hxx"
25
26 template <class T> class GHS3DPlugin_Creator_i:public HypothesisCreator_i<T>
27 {
28   // as we have 'module GHS3DPlugin' in GHS3DPlugin_Algorithm.idl
29   virtual std::string GetModuleName() { return "GHS3DPlugin"; }
30 };
31
32 //=============================================================================
33 /*!
34  *
35  */
36 //=============================================================================
37
38 extern "C"
39 {
40   GHS3DPLUGIN_EXPORT GenericHypothesisCreator_i* GetHypothesisCreator (const char* aHypName);
41   
42   GHS3DPLUGIN_EXPORT
43   GenericHypothesisCreator_i* GetHypothesisCreator (const char* aHypName)
44   {
45     GenericHypothesisCreator_i* aCreator = 0;
46
47     // Algorithm
48     if (strcmp(aHypName, "GHS3D_3D") == 0 ||
49         strcmp(aHypName, "MG-Tetra") == 0)
50       aCreator = new GHS3DPlugin_Creator_i<GHS3DPlugin_GHS3D_i>;
51
52     else if (strcmp(aHypName, "MG-Tetra Optimization") == 0)
53       aCreator = new GHS3DPlugin_Creator_i<GHS3DPlugin_Optimizer_i>;
54
55     // Hypothesis
56     else if (strcmp(aHypName, "GHS3D_Parameters") == 0 ||
57              strcmp(aHypName, "MG-Tetra Parameters") == 0)
58       aCreator = new GHS3DPlugin_Creator_i<GHS3DPlugin_Hypothesis_i>;
59
60     else if (strcmp(aHypName, "MG-Tetra Optimization Parameters") == 0)
61       aCreator = new GHS3DPlugin_Creator_i<GHS3DPlugin_OptimizerHypothesis_i>;
62
63     return aCreator;
64   }
65 }