]> SALOME platform Git repositories - plugins/blsurfplugin.git/blob - src/BLSURFPlugin/BLSURFPlugin_i.cxx
Salome HOME
Merge V8_4_BR branch.
[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                                      int                     theStudyId,
46                                      ::SMESH_Gen*            theGenImpl)
47   {
48     return new T (thePOA, theStudyId, theGenImpl, !NOGEOM);
49   }
50
51   // as we have 'module BLSURFPlugin' in BLSURFPlugin_Algorithm.idl
52   virtual std::string GetModuleName() { return "BLSURFPlugin"; }
53 };
54
55 //=============================================================================
56 /*!
57  *
58  */
59 //=============================================================================
60
61 extern "C"
62 {
63   BLSURFPLUGIN_EXPORT
64   GenericHypothesisCreator_i* GetHypothesisCreator (const char* aHypName)
65   {
66     GenericHypothesisCreator_i* aCreator = 0;
67
68     // Algorithms
69     if (strcmp(aHypName, "BLSURF") == 0 ||
70         strcmp(aHypName, "MG-CADSurf") == 0 )
71       aCreator = new BLSURFPlugin_Creator_i<BLSURFPlugin_BLSURF_i,false>;
72     else if (strcmp(aHypName, "MG-CADSurf_NOGEOM") == 0 )
73       aCreator = new BLSURFPlugin_Creator_i<BLSURFPlugin_BLSURF_i,true>;
74     // Hypotheses
75     else if (strcmp(aHypName, "BLSURF_Parameters") == 0 ||
76              strcmp(aHypName, "MG-CADSurf Parameters") == 0 )
77       aCreator = new BLSURFPlugin_Creator_i<BLSURFPlugin_Hypothesis_i,false>;
78     else if (strcmp(aHypName, "MG-CADSurf Parameters_NOGEOM") == 0 )
79       aCreator = new BLSURFPlugin_Creator_i<BLSURFPlugin_Hypothesis_i,true>;
80
81     return aCreator;
82   }
83 }