summaryrefslogtreecommitdiff
path: root/TAO/CIAO/CCF/Example/CIDL/LocalExecutorMapping/test-1.idl
blob: 2140367480c43c34c5d92490b11163034874a988 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// file      : CCF/Example/CIDL/LocalExecutorMapping/test-1.idl
// author    : Boris Kolpackov <boris@dre.vanderbilt.edu>
// cvs-id    : $Id$

#include <Components.idl>
#include "test-0.idl"

module M1
{
  interface Blah;
  interface Fool {};
  
  component C1 
  {
    provides M::I i;
    readonly attribute long l;
  };
  
  home H1 manages C1
  {
    attribute M::I i;
  };
};