Salome HOME
Merge from V6_main 01/04/2013
[plugins/blsurfplugin.git] / src / BLSURFPlugin / BLSURFPlugin_i.cxx
1 // Copyright (C) 2007-2013  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 // ---
21 // File    : BLSURFPlugin_i.cxx
22 // Authors : Francis KLOSS (OCC) & Patrick LAUG (INRIA)
23 // ---
24 //
25 #include "utilities.h"
26
27 #ifdef WIN32
28   #if defined BLSURFPLUGIN_EXPORTS || defined BLSURFEngine_EXPORTS
29     #define BLSURFPLUGIN_EXPORT __declspec( dllexport )
30   #else
31     #define BLSURFPLUGIN_EXPORT __declspec( dllimport )
32   #endif
33 #else
34   #define BLSURFPLUGIN_EXPORT
35 #endif
36
37 #include "BLSURFPlugin_BLSURF_i.hxx"
38 #include "BLSURFPlugin_Hypothesis_i.hxx"
39
40 template <class T> class BLSURFPlugin_Creator_i:public HypothesisCreator_i<T>
41 {
42   // as we have 'module BLSURFPlugin' in BLSURFPlugin_Algorithm.idl
43   virtual std::string GetModuleName() { return "BLSURFPlugin"; }
44 };
45
46 //=============================================================================
47 /*!
48  *
49  */
50 //=============================================================================
51
52 extern "C"
53 {
54   BLSURFPLUGIN_EXPORT
55   GenericHypothesisCreator_i* GetHypothesisCreator (const char* aHypName)
56   {
57     MESSAGE("GetHypothesisCreator " << aHypName);
58
59     GenericHypothesisCreator_i* aCreator = 0;
60
61     // Algorithms
62     if (strcmp(aHypName, "BLSURF") == 0)
63       aCreator = new BLSURFPlugin_Creator_i<BLSURFPlugin_BLSURF_i>;
64     // Hypotheses
65     else if (strcmp(aHypName, "BLSURF_Parameters") == 0)
66       aCreator = new BLSURFPlugin_Creator_i<BLSURFPlugin_Hypothesis_i>;
67     else ;
68
69     return aCreator;
70   }
71 }