1 // Copyright (C) 2007-2023 CEA/DEN, EDF R&D
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.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 // File : BLSURFPlugin_i.cxx
22 // Authors : Francis KLOSS (OCC) & Patrick LAUG (INRIA)
25 #include "utilities.h"
28 #if defined BLSURFPLUGIN_EXPORTS || defined BLSURFEngine_EXPORTS
29 #define BLSURFPLUGIN_EXPORT __declspec( dllexport )
31 #define BLSURFPLUGIN_EXPORT __declspec( dllimport )
34 #define BLSURFPLUGIN_EXPORT
37 #include "BLSURFPlugin_BLSURF_i.hxx"
38 #include "BLSURFPlugin_Hypothesis_i.hxx"
40 template <class T, bool NOGEOM>
41 class BLSURFPlugin_Creator_i : public GenericHypothesisCreator_i
43 // Create a hypothesis
44 virtual SMESH_Hypothesis_i* Create(PortableServer::POA_ptr thePOA,
45 ::SMESH_Gen* theGenImpl)
47 return new T (thePOA, theGenImpl, !NOGEOM);
50 // as we have 'module BLSURFPlugin' in BLSURFPlugin_Algorithm.idl
51 virtual std::string GetModuleName() { return "BLSURFPlugin"; }
54 //=============================================================================
58 //=============================================================================
63 GenericHypothesisCreator_i* GetHypothesisCreator (const char* aHypName)
65 GenericHypothesisCreator_i* aCreator = 0;
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>;
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>;