Salome HOME
Fix compilation pb.
[modules/kernel.git] / src / Communication / SenderFactory.hxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 #ifndef _SENDERFACTORY_HXX_
21 #define _SENDERFACTORY_HXX_
22
23 #include <SALOME_Communication.hxx>
24
25 #include "MultiCommException.hxx"
26 #include <SALOMEconfig.h>
27 #include CORBA_SERVER_HEADER(SALOME_Comm)
28
29 class SALOMEMultiComm;
30
31 class SALOME_SenderDouble_i;
32 class SALOME_SenderInt_i;
33
34 /*!
35   This class implements the factory pattern of GoF by making a sender by giving an array and a communicator.It completely hides the type of sender from the user.
36  */
37 class COMMUNICATION_EXPORT SenderFactory
38 {
39 public:
40   static SALOME::SenderDouble_ptr buildSender(SALOMEMultiComm &multiCommunicator,const double *tab,long lgr,bool ownTab=false) throw(MultiCommException);
41   static SALOME::SenderInt_ptr buildSender(SALOMEMultiComm &multiCommunicator,const int *tab,long lgr,bool ownTab=false) throw(MultiCommException);
42   static SALOME::SenderDouble_ptr buildSender(SALOME::TypeOfCommunication NewType,SALOME_SenderDouble_i *src);
43   static SALOME::SenderInt_ptr buildSender(SALOME::TypeOfCommunication NewType,SALOME_SenderInt_i *src);
44 };
45
46 template<class T>
47 struct mapCppSender {
48   typedef T SenderVarType;
49 };
50
51 template<>
52 struct mapCppSender<int>
53 {
54   typedef SALOME::SenderInt_var SenderVarType;
55 };
56
57 template<>
58 struct mapCppSender<double>
59 {
60   typedef SALOME::SenderDouble_var SenderVarType;
61 };
62
63 #endif
64