2023-06-19 17:55:24 +01:00
|
|
|
// Copyright (C) 2007-2023 CEA, EDF, OPEN CASCADE
|
2009-02-17 07:15:34 +00:00
|
|
|
//
|
2012-08-09 11:45:31 +00:00
|
|
|
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
|
|
|
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
|
2009-02-17 07:15:34 +00:00
|
|
|
//
|
2012-08-09 11:45:31 +00:00
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
2014-02-19 16:50:20 +04:00
|
|
|
// version 2.1 of the License, or (at your option) any later version.
|
2004-03-26 07:05:19 +00:00
|
|
|
//
|
2012-08-09 11:45:31 +00:00
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
2004-03-26 07:05:19 +00:00
|
|
|
//
|
2012-08-09 11:45:31 +00:00
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2004-03-26 07:05:19 +00:00
|
|
|
//
|
2012-08-09 11:45:31 +00:00
|
|
|
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
2004-03-26 07:05:19 +00:00
|
|
|
//
|
2012-08-09 11:45:31 +00:00
|
|
|
|
2018-01-09 13:28:08 +03:00
|
|
|
// SMESH NETGENPlugin : implementation of SMESH idl descriptions
|
2004-03-26 07:05:19 +00:00
|
|
|
// File : NETGENPlugin.cxx
|
|
|
|
// Author : Julia DOROVSKIKH
|
|
|
|
// Module : SMESH
|
|
|
|
// $Header$
|
2009-02-17 07:15:34 +00:00
|
|
|
//
|
2004-03-26 07:05:19 +00:00
|
|
|
#include "utilities.h"
|
|
|
|
|
2012-08-09 11:45:31 +00:00
|
|
|
#include "NETGENPlugin_Hypothesis_2D_ONLY_i.hxx"
|
2006-05-06 08:54:13 +00:00
|
|
|
#include "NETGENPlugin_Hypothesis_2D_i.hxx"
|
2012-08-09 11:45:31 +00:00
|
|
|
#include "NETGENPlugin_Hypothesis_3D_i.hxx"
|
|
|
|
#include "NETGENPlugin_Hypothesis_i.hxx"
|
|
|
|
#include "NETGENPlugin_NETGEN_2D3D_i.hxx"
|
|
|
|
#include "NETGENPlugin_NETGEN_2D_ONLY_i.hxx"
|
|
|
|
#include "NETGENPlugin_NETGEN_2D_i.hxx"
|
|
|
|
#include "NETGENPlugin_NETGEN_3D_i.hxx"
|
2022-10-21 15:03:58 +02:00
|
|
|
#include "NETGENPlugin_NETGEN_3D_Remote_i.hxx"
|
2009-02-17 07:15:34 +00:00
|
|
|
#include "NETGENPlugin_SimpleHypothesis_2D_i.hxx"
|
|
|
|
#include "NETGENPlugin_SimpleHypothesis_3D_i.hxx"
|
2006-05-06 08:54:13 +00:00
|
|
|
|
|
|
|
template <class T> class NETGENPlugin_Creator_i:public HypothesisCreator_i<T>
|
|
|
|
{
|
|
|
|
// as we have 'module NETGENPlugin' in NETGENPlugin_Algorithm.idl
|
|
|
|
virtual std::string GetModuleName() { return "NETGENPlugin"; }
|
|
|
|
};
|
2004-03-26 07:05:19 +00:00
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
/*!
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
extern "C"
|
|
|
|
{
|
2008-03-07 07:47:18 +00:00
|
|
|
NETGENPLUGIN_EXPORT
|
2004-03-26 07:05:19 +00:00
|
|
|
GenericHypothesisCreator_i* GetHypothesisCreator (const char* aHypName)
|
|
|
|
{
|
|
|
|
GenericHypothesisCreator_i* aCreator = 0;
|
|
|
|
|
|
|
|
// Hypotheses
|
|
|
|
|
|
|
|
// Algorithms
|
|
|
|
if (strcmp(aHypName, "NETGEN_3D") == 0)
|
2006-05-06 08:54:13 +00:00
|
|
|
aCreator = new NETGENPlugin_Creator_i<NETGENPlugin_NETGEN_3D_i>;
|
2022-10-21 15:03:58 +02:00
|
|
|
else if (strcmp(aHypName, "NETGEN_3D_Remote") == 0)
|
|
|
|
aCreator = new NETGENPlugin_Creator_i<NETGENPlugin_NETGEN_3D_Remote_i>;
|
2006-05-06 08:54:13 +00:00
|
|
|
else if (strcmp(aHypName, "NETGEN_2D") == 0)
|
|
|
|
aCreator = new NETGENPlugin_Creator_i<NETGENPlugin_NETGEN_2D_i>;
|
2008-03-07 07:47:18 +00:00
|
|
|
else if (strcmp(aHypName, "NETGEN_2D_ONLY") == 0)
|
|
|
|
aCreator = new NETGENPlugin_Creator_i<NETGENPlugin_NETGEN_2D_ONLY_i>;
|
2006-05-06 08:54:13 +00:00
|
|
|
else if (strcmp(aHypName, "NETGEN_2D3D") == 0)
|
|
|
|
aCreator = new NETGENPlugin_Creator_i<NETGENPlugin_NETGEN_2D3D_i>;
|
2017-10-17 17:38:39 +03:00
|
|
|
else if (strcmp(aHypName, "NETGEN_Remesher_2D") == 0)
|
|
|
|
aCreator = new NETGENPlugin_Creator_i<NETGENPlugin_Remesher_2D_i>;
|
2006-05-06 08:54:13 +00:00
|
|
|
// Hypotheses
|
|
|
|
else if (strcmp(aHypName, "NETGEN_Parameters") == 0)
|
|
|
|
aCreator = new NETGENPlugin_Creator_i<NETGENPlugin_Hypothesis_i>;
|
|
|
|
else if (strcmp(aHypName, "NETGEN_Parameters_2D") == 0)
|
|
|
|
aCreator = new NETGENPlugin_Creator_i<NETGENPlugin_Hypothesis_2D_i>;
|
2012-08-09 11:45:31 +00:00
|
|
|
else if (strcmp(aHypName, "NETGEN_Parameters_3D") == 0)
|
|
|
|
aCreator = new NETGENPlugin_Creator_i<NETGENPlugin_Hypothesis_3D_i>;
|
|
|
|
else if (strcmp(aHypName, "NETGEN_Parameters_2D_ONLY") == 0)
|
|
|
|
aCreator = new NETGENPlugin_Creator_i<NETGENPlugin_Hypothesis_2D_ONLY_i>;
|
2009-02-17 07:15:34 +00:00
|
|
|
else if (strcmp(aHypName, "NETGEN_SimpleParameters_2D") == 0)
|
|
|
|
aCreator = new NETGENPlugin_Creator_i<NETGENPlugin_SimpleHypothesis_2D_i>;
|
|
|
|
else if (strcmp(aHypName, "NETGEN_SimpleParameters_3D") == 0)
|
|
|
|
aCreator = new NETGENPlugin_Creator_i<NETGENPlugin_SimpleHypothesis_3D_i>;
|
2017-10-17 17:38:39 +03:00
|
|
|
else if (strcmp(aHypName, "NETGEN_RemesherParameters_2D") == 0)
|
|
|
|
aCreator = new NETGENPlugin_Creator_i<NETGENPlugin_RemesherHypothesis_2D_i>;
|
2004-03-26 07:05:19 +00:00
|
|
|
|
|
|
|
return aCreator;
|
|
|
|
}
|
|
|
|
}
|