summaryrefslogtreecommitdiff
path: root/trunk/CIAO/tests/Minimum/Sender/Sender.idl
blob: 74b9bf76f9ad1edb7100476bc41c25978202342b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//$Id$

#ifndef CIAO_SENDER_IDL
#define CIAO_SENDER_IDL


#include "../Minimum_Base/Minimum_Base.idl"

module Minimum
{
  /* This is a Sender specific interface which will be used to get the
   * process start.
   */
  
  interface trigger
  {
    void bar ();
  };

  component Sender supports trigger
  {
  };

  home SenderHome manages Sender
  {
  };
};
#endif /*CIAO_SENDER_IDL*/