Salome HOME
Fix of issue EDF 1287 BLSURFPLUGIN: Problem of size map on edge
[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 #ifdef WIN32
27   #if defined BLSURFPLUGIN_EXPORTS || defined BLSURFEngine_EXPORTS
28     #define BLSURFPLUGIN_EXPORT __declspec( dllexport )
29   #else
30     #define BLSURFPLUGIN_EXPORT __declspec( dllimport )
31   #endif
32 #else
33   #define BLSURFPLUGIN_EXPORT
34 #endif
35
36 #include "BLSURFPlugin_BLSURF_i.hxx"
37 #include "BLSURFPlugin_Hypothesis_i.hxx"
38
39 template <class T> class BLSURFPlugin_Creator_i:public HypothesisCreator_i<T>
40 {
41   // as we have 'module BLSURFPlugin' in BLSURFPlugin_Algorithm.idl
42   virtual std::string GetModuleName() { return "BLSURFPlugin"; }
43 };
44
45 //=============================================================================
46 /*!
47  *
48  */
49 //=============================================================================
50
51 extern "C"
52 {
53   BLSURFPLUGIN_EXPORT
54   GenericHypothesisCreator_i* GetHypothesisCreator (const char* aHypName)
55   {
56     MESSAGE("GetHypothesisCreator " << aHypName);
57
58     GenericHypothesisCreator_i* aCreator = 0;
59
60     // Algorithms
61     if (strcmp(aHypName, "BLSURF") == 0)
62       aCreator = new BLSURFPlugin_Creator_i<BLSURFPlugin_BLSURF_i>;
63     // Hypotheses
64     else if (strcmp(aHypName, "BLSURF_Parameters") == 0)
65       aCreator = new BLSURFPlugin_Creator_i<BLSURFPlugin_Hypothesis_i>;
66     else ;
67
68     return aCreator;
69   }
70 }