]> SALOME platform Git repositories - modules/kernel.git/blob - src/Communication/SALOMEMultiComm.hxx
Salome HOME
208dbbd8eda16be4d7b510bcfbb2419a6dd13477
[modules/kernel.git] / src / Communication / SALOMEMultiComm.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 _SALOMEMULTICOMM_HXX_
21 #define _SALOMEMULTICOMM_HXX_
22
23 #include <SALOMEconfig.h>
24 #include CORBA_SERVER_HEADER(SALOME_Comm)
25
26 /*!
27   Class is designed to ease the use of multi communication.\n
28   Simply inherite from it your servant class you want to emit data with senders.
29  */
30 class SALOMEMultiComm : public virtual POA_SALOME::MultiCommClass {
31 protected:
32   SALOME::TypeOfCommunication _type;
33 public:
34   SALOMEMultiComm();
35   SALOMEMultiComm(SALOME::TypeOfCommunication type);
36   virtual void setProtocol(SALOME::TypeOfCommunication type);
37   SALOME::TypeOfCommunication getProtocol() const;
38 };
39
40 #endif