Salome HOME
Copyright update: 2016
[samples/atomsolv.git] / src / ATOMSOLV / ATOMSOLV.hxx
1 // Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
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, or (at your option) any later version.
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 #ifndef _ATOMSOLV_HXX_
21 #define _ATOMSOLV_HXX_
22
23 #include <SALOMEconfig.h>
24 #include CORBA_SERVER_HEADER(ATOMSOLV)
25 #include CORBA_SERVER_HEADER(ATOMGEN)
26 #include "SALOME_Component_i.hxx"
27
28 #include <map>
29
30 #if defined WIN32
31 #  if defined ATOMSOLV_EXPORTS || defined ATOMSOLVEngine_EXPORTS
32 #    define ATOMSOLV_EXPORT __declspec( dllexport )
33 #  else
34 #    define ATOMSOLV_EXPORT __declspec( dllimport )
35 #  endif
36 #else
37 #  define ATOMSOLV_EXPORT
38 #endif
39
40
41 class ATOMSOLV_EXPORT ATOMSOLV:
42   public POA_ATOMSOLV_ORB::ATOMSOLV_Gen,
43   public Engines_Component_i 
44 {
45
46 public:
47   ATOMSOLV(CORBA::ORB_ptr orb,
48            PortableServer::POA_ptr poa,
49            PortableServer::ObjectId * contId, 
50            const char *instanceName, 
51            const char *interfaceName);
52   virtual ~ATOMSOLV();
53
54   CORBA::Boolean setData( CORBA::Long studyID, const ATOMSOLV_ORB::TMoleculeList& theData );
55   CORBA::Boolean getData( CORBA::Long studyID, ATOMSOLV_ORB::TMoleculeList_out outData );
56   CORBA::Boolean processData( CORBA::Long studyID );
57   virtual char*  getVersion();
58
59 private:
60   std::map<long, ATOMSOLV_ORB::TMoleculeList*> myData;
61 };
62
63 extern "C"
64  ATOMSOLV_EXPORT
65 PortableServer::ObjectId * ATOMSOLVEngine_factory(CORBA::ORB_ptr orb,
66                                                   PortableServer::POA_ptr poa,
67                                                   PortableServer::ObjectId * contId,
68                                                   const char *instanceName,
69                                                   const char *interfaceName);
70
71 #endif