summaryrefslogtreecommitdiff
path: root/modules/CIAO/DAnCE/tests/CIAO/Components/SimpleCommon.idl
blob: 6f943e9d1d5c952c72efa63aeb44acb4171fbdc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// $Id$

#ifndef SIMPLE_COMMON_IDL
#define SIMPLE_COMMON_IDL

#include "Components.idl"

module Simple
{
  interface Trigger
  {
    void hello (in string hello);
  };
  
  eventtype Hello
  {
    public string hello_;
  };
};

#endif /*SIMPLE_COMMON_IDL*/