summaryrefslogtreecommitdiff
path: root/tests/CIAO_ComponentServer/SimpleComponent/SimpleComponent.idl
blob: dcf676fb276bb13b64d98754fca26c9eab36cd20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//$Id$

#include <Components.idl>

module Foo
{
  interface Simple 
  {
    void trigger ();
  };
  
  component SimpleComponent supports Simple
  {
    readonly attribute string creationtype_;
  };
  
  home SimpleHome manages SimpleComponent
  {
  };
};