Salome HOME
Update copyright information
[plugins/blsurfplugin.git] / src / BLSURFPlugin / BLSURFPlugin_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 //  SMESH BLSURFPlugin : implementaion of SMESH idl descriptions
20 //  File    : BLSURFPlugin_i.cxx
21 //  Authors : Francis KLOSS (OCC) & Patrick LAUG (INRIA)
22 //  Module  : SMESH
23 //
24 using namespace std;
25 #include "utilities.h"
26
27 #include "BLSURFPlugin_BLSURF_i.hxx"
28 #include "BLSURFPlugin_Hypothesis_i.hxx"
29
30 template <class T> class BLSURFPlugin_Creator_i:public HypothesisCreator_i<T>
31 {
32   // as we have 'module BLSURFPlugin' in BLSURFPlugin_Algorithm.idl
33   virtual std::string GetModuleName() { return "BLSURFPlugin"; }
34 };
35
36 //=============================================================================
37 /*!
38  *
39  */
40 //=============================================================================
41
42 extern "C"
43 {
44   GenericHypothesisCreator_i* GetHypothesisCreator (const char* aHypName)
45   {
46     MESSAGE("GetHypothesisCreator " << aHypName);
47
48     GenericHypothesisCreator_i* aCreator = 0;
49
50     // Algorithms
51     if (strcmp(aHypName, "BLSURF") == 0)
52       aCreator = new BLSURFPlugin_Creator_i<BLSURFPlugin_BLSURF_i>;
53     // Hypotheses
54     else if (strcmp(aHypName, "BLSURF_Parameters") == 0)
55       aCreator = new BLSURFPlugin_Creator_i<BLSURFPlugin_Hypothesis_i>;
56     else ;
57
58     return aCreator;
59   }
60 }