summaryrefslogtreecommitdiff
path: root/CIAO/tests/DAnCE/Components/SimpleCommon.idl
blob: fd55ae4914a0844dfcc96d897b8ed50392ddefbf (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
29
30
// $Id$

#ifndef SIMPLE_COMMON_IDL
#define SIMPLE_COMMON_IDL

#include "Components.idl"

#pragma ciao lem "SimpleCommonE.idl"

module Simple
{
  interface Trigger
  {
    void hello (in string hello);
  };

  local interface LocalTrigger
  {
    void hello (in string hello);
  };

#if  !defined (CCM_NOEVENT)
  eventtype Hello
  {
    public string hello_;
  };
#endif
};

#endif /*SIMPLE_COMMON_IDL*/