Salome HOME
Copyright update 2021
[samples/component.git] / src / MulComponent / MulComponent.hxx
1 // Copyright (C) 2007-2021  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  SuperVisionTest MulComponent : example of component that multiplies two numbers
24 //  File   : MulComponentEngine.hxx
25 //  Author : MARC TAJCHMAN, CEA
26 //  Module : SuperVisionTest
27 //  $Header$
28 //
29 #ifndef _MULCOMPONENTENGINE_HXX_
30 #define _MULCOMPONENTENGINE_HXX_
31
32 #ifdef WIN32
33 # if defined MULCOMPONENTENGINE_EXPORTS || defined MulComponentEngine_EXPORTS
34 #  define MULCOMPONENTENGINE_EXPORT __declspec( dllexport )
35 # else
36 #  define MULCOMPONENTENGINE_EXPORT __declspec( dllimport )
37 # endif
38 #else
39 # define MULCOMPONENTENGINE_EXPORT
40 #endif
41
42 //#include <iostream.h>
43 #include <SALOMEconfig.h>
44 #include CORBA_SERVER_HEADER(MulComponent)
45 #include CORBA_SERVER_HEADER(SALOME_Component)
46 #include "SALOME_Component_i.hxx"
47
48 class MULCOMPONENTENGINE_EXPORT MulComponentEngine :  public POA_SuperVisionTest::MulComponent ,
49                                                       public Engines_Component_i {
50 public:
51   MulComponentEngine() ;
52   MulComponentEngine( CORBA::ORB_ptr orb,
53                       PortableServer::POA_ptr poa,
54                       PortableServer::ObjectId * contId, 
55                       const char *instanceName,
56                       const char *interfaceName);
57
58   virtual ~MulComponentEngine();
59
60   virtual char* getVersion();
61
62   void Mul( double x , double y , double & z ) ;
63
64 private:
65
66   int _nexec ;
67
68 };
69
70 extern "C"
71   MULCOMPONENTENGINE_EXPORT
72   PortableServer::ObjectId * MulComponentEngine_factory
73                                    ( CORBA::ORB_ptr orb ,
74                                      PortableServer::POA_ptr poa , 
75                                      PortableServer::ObjectId * contId ,
76                                      const char *instanceName ,
77                                      const char *interfaceName ) ;
78
79 #endif