Salome HOME
PR: mergefrom_BSEC_br1_14Mar04
[modules/kernel.git] / idl / SALOME_TestMPIComponent.idl
1 //=============================================================================
2 // File      : SALOME_MPITestComponent.idl
3 // Created   : mer jui 04 12:08:17 CEST 2003
4 // Author    : Bernard SECHER, CEA
5 // Project   : SALOME
6 // Copyright : CEA 2003
7 // $Header$
8 //=============================================================================
9
10 #include "SALOME_Component.idl"
11 #include "SALOME_MPIObject.idl"
12
13 module Engines
14 {
15   
16   interface TestMPIComponent : Component, MPIObject
17   {
18     // version synchrone (process 0)
19     void Coucou(in long L);
20     // version asynchrone (autres process)
21     oneway void SPCoucou(in long L);
22   };
23
24 };