Salome HOME
Merge V9_dev branch into master
[plugins/blsurfplugin.git] / src / BLSURFPlugin / BLSURFPlugin_i.cxx
1 // Copyright (C) 2007-2016  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    : BLSURFPlugin_i.cxx
22 // Authors : Francis KLOSS (OCC) & Patrick LAUG (INRIA)
23 // ---
24 //
25 #include "utilities.h"
26
27 #ifdef WIN32
28   #if defined BLSURFPLUGIN_EXPORTS || defined BLSURFEngine_EXPORTS
29     #define BLSURFPLUGIN_EXPORT __declspec( dllexport )
30   #else
31     #define BLSURFPLUGIN_EXPORT __declspec( dllimport )
32   #endif
33 #else
34   #define BLSURFPLUGIN_EXPORT
35 #endif
36
37 #include "BLSURFPlugin_BLSURF_i.hxx"
38 #include "BLSURFPlugin_Hypothesis_i.hxx"
39
40 template <class T, bool NOGEOM>
41 class BLSURFPlugin_Creator_i : public GenericHypothesisCreator_i
42 {
43   // Create a hypothesis
44   virtual SMESH_Hypothesis_i* Create(PortableServer::POA_ptr thePOA,
45                                      ::SMESH_Gen*            theGenImpl)
46   {
47     return new T (thePOA, theGenImpl, !NOGEOM);
48   }
49
50   // as we have 'module BLSURFPlugin' in BLSURFPlugin_Algorithm.idl
51   virtual std::string GetModuleName() { return "BLSURFPlugin"; }
52 };
53
54 //=============================================================================
55 /*!
56  *
57  */
58 //=============================================================================
59
60 extern "C"
61 {
62   BLSURFPLUGIN_EXPORT
63   GenericHypothesisCreator_i* GetHypothesisCreator (const char* aHypName)
64   {
65     GenericHypothesisCreator_i* aCreator = 0;
66
67     // Algorithms
68     if (strcmp(aHypName, "BLSURF") == 0 ||
69         strcmp(aHypName, "MG-CADSurf") == 0 )
70       aCreator = new BLSURFPlugin_Creator_i<BLSURFPlugin_BLSURF_i,false>;
71     else if (strcmp(aHypName, "MG-CADSurf_NOGEOM") == 0 )
72       aCreator = new BLSURFPlugin_Creator_i<BLSURFPlugin_BLSURF_i,true>;
73     // Hypotheses
74     else if (strcmp(aHypName, "BLSURF_Parameters") == 0 ||
75              strcmp(aHypName, "MG-CADSurf Parameters") == 0 )
76       aCreator = new BLSURFPlugin_Creator_i<BLSURFPlugin_Hypothesis_i,false>;
77     else if (strcmp(aHypName, "MG-CADSurf Parameters_NOGEOM") == 0 )
78       aCreator = new BLSURFPlugin_Creator_i<BLSURFPlugin_Hypothesis_i,true>;
79
80     return aCreator;
81   }
82 }