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