Salome HOME
597b1660a90057cd6be8c641fc3c83fe490f8619
[plugins/hexoticplugin.git] / src / HexoticPlugin / HexoticPlugin_i.cxx
1 // Copyright (C) 2007-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 // ---
21 // File   : HexoticPlugin_i.cxx
22 // Author : Lioka RAZAFINDRAZAKA (CEA)
23 // ---
24 //
25 #include "SMESH_Hypothesis_i.hxx"
26
27 #include "utilities.h"
28
29 #include "HexoticPlugin_Hexotic_i.hxx"
30 #include "HexoticPlugin_Hypothesis_i.hxx"
31
32 template <class T> class HexoticPlugin_Creator_i:public HypothesisCreator_i<T>
33 {
34   // as we have 'module HexoticPlugin' in HexoticPlugin_Algorithm.idl
35   virtual std::string GetModuleName() { return "HexoticPLUGIN"; }
36 };
37
38 //=============================================================================
39 /*!
40  *
41  */
42 //=============================================================================
43
44 extern "C"
45 {
46   HEXOTICPLUGIN_EXPORT
47   GenericHypothesisCreator_i* GetHypothesisCreator (const char* aHypName)
48   {
49     MESSAGE("GetHypothesisCreator " << aHypName);
50
51     GenericHypothesisCreator_i* aCreator = 0;
52
53     // Algorithms
54     if (strcmp(aHypName, "Hexotic_3D") == 0 ||
55         strcmp(aHypName, "MG-Hexa") == 0)
56       aCreator = new HexoticPlugin_Creator_i<HexoticPlugin_Hexotic_i>;
57     // Hypotheses
58     else if (strcmp(aHypName, "Hexotic_Parameters") == 0 ||
59              strcmp(aHypName, "MG-Hexa Parameters") == 0)
60       aCreator = new HexoticPlugin_Creator_i<HexoticPlugin_Hypothesis_i>;
61
62     return aCreator;
63   }
64 }