Salome HOME
#BOS 37851: cast tuple types for compilation on FD38
[plugins/netgenplugin.git] / src / NETGENPlugin / NETGENPlugin_i.cxx
1 // Copyright (C) 2007-2023  CEA, EDF, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  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, or (at your option) any later version.
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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  SMESH NETGENPlugin : implementation of SMESH idl descriptions
24 //  File   : NETGENPlugin.cxx
25 //  Author : Julia DOROVSKIKH
26 //  Module : SMESH
27 //  $Header$
28 //
29 #include "utilities.h"
30
31 #include "NETGENPlugin_Hypothesis_2D_ONLY_i.hxx"
32 #include "NETGENPlugin_Hypothesis_2D_i.hxx"
33 #include "NETGENPlugin_Hypothesis_3D_i.hxx"
34 #include "NETGENPlugin_Hypothesis_i.hxx"
35 #include "NETGENPlugin_NETGEN_2D3D_i.hxx"
36 #include "NETGENPlugin_NETGEN_2D_ONLY_i.hxx"
37 #include "NETGENPlugin_NETGEN_2D_i.hxx"
38 #include "NETGENPlugin_NETGEN_3D_i.hxx"
39 #include "NETGENPlugin_NETGEN_3D_Remote_i.hxx"
40 #include "NETGENPlugin_SimpleHypothesis_2D_i.hxx"
41 #include "NETGENPlugin_SimpleHypothesis_3D_i.hxx"
42
43 template <class T> class NETGENPlugin_Creator_i:public HypothesisCreator_i<T>
44 {
45   // as we have 'module NETGENPlugin' in NETGENPlugin_Algorithm.idl
46   virtual std::string GetModuleName() { return "NETGENPlugin"; }
47 };
48
49 //=============================================================================
50 /*!
51  *
52  */
53 //=============================================================================
54
55 extern "C"
56 {
57   NETGENPLUGIN_EXPORT
58   GenericHypothesisCreator_i* GetHypothesisCreator (const char* aHypName)
59   {
60     GenericHypothesisCreator_i* aCreator = 0;
61
62     // Hypotheses
63
64     // Algorithms
65     if (strcmp(aHypName, "NETGEN_3D") == 0)
66       aCreator = new NETGENPlugin_Creator_i<NETGENPlugin_NETGEN_3D_i>;
67     else if (strcmp(aHypName, "NETGEN_3D_Remote") == 0)
68       aCreator = new NETGENPlugin_Creator_i<NETGENPlugin_NETGEN_3D_Remote_i>;
69     else if (strcmp(aHypName, "NETGEN_2D") == 0)
70       aCreator = new NETGENPlugin_Creator_i<NETGENPlugin_NETGEN_2D_i>;
71     else if (strcmp(aHypName, "NETGEN_2D_ONLY") == 0)
72       aCreator = new NETGENPlugin_Creator_i<NETGENPlugin_NETGEN_2D_ONLY_i>;
73     else if (strcmp(aHypName, "NETGEN_2D3D") == 0)
74       aCreator = new NETGENPlugin_Creator_i<NETGENPlugin_NETGEN_2D3D_i>;
75     else if (strcmp(aHypName, "NETGEN_Remesher_2D") == 0)
76       aCreator = new NETGENPlugin_Creator_i<NETGENPlugin_Remesher_2D_i>;
77     // Hypotheses
78     else if (strcmp(aHypName, "NETGEN_Parameters") == 0)
79       aCreator = new NETGENPlugin_Creator_i<NETGENPlugin_Hypothesis_i>;
80     else if (strcmp(aHypName, "NETGEN_Parameters_2D") == 0)
81       aCreator = new NETGENPlugin_Creator_i<NETGENPlugin_Hypothesis_2D_i>;
82     else if (strcmp(aHypName, "NETGEN_Parameters_3D") == 0)
83       aCreator = new NETGENPlugin_Creator_i<NETGENPlugin_Hypothesis_3D_i>;
84     else if (strcmp(aHypName, "NETGEN_Parameters_2D_ONLY") == 0)
85       aCreator = new NETGENPlugin_Creator_i<NETGENPlugin_Hypothesis_2D_ONLY_i>;
86     else if (strcmp(aHypName, "NETGEN_SimpleParameters_2D") == 0)
87       aCreator = new NETGENPlugin_Creator_i<NETGENPlugin_SimpleHypothesis_2D_i>;
88     else if (strcmp(aHypName, "NETGEN_SimpleParameters_3D") == 0)
89       aCreator = new NETGENPlugin_Creator_i<NETGENPlugin_SimpleHypothesis_3D_i>;
90     else if (strcmp(aHypName, "NETGEN_RemesherParameters_2D") == 0)
91       aCreator = new NETGENPlugin_Creator_i<NETGENPlugin_RemesherHypothesis_2D_i>;
92
93     return aCreator;
94   }
95 }