]> SALOME platform Git repositories - modules/kernel.git/blob - src/Communication/SALOMEMultiComm.cxx
Salome HOME
PR: mergefrom_BR_GEAY_05Nov04
[modules/kernel.git] / src / Communication / SALOMEMultiComm.cxx
1 #include "SALOMEMultiComm.hxx"
2
3 SALOMEMultiComm::SALOMEMultiComm():_type(SALOME::CORBA_)
4 {
5 }
6
7 SALOMEMultiComm::SALOMEMultiComm(SALOME::TypeOfCommunication type):_type(type)
8 {
9 }
10
11 void SALOMEMultiComm::setProtocol(SALOME::TypeOfCommunication type)
12 {
13   _type=type;
14 }
15
16 SALOME::TypeOfCommunication SALOMEMultiComm::getProtocol() const
17 {
18   return _type;
19 }
20
21