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