summaryrefslogtreecommitdiff
path: root/TAO/CIAO/CCF/Example/CIDL/LocalExecutorMapping/test-1.idl
blob: f467b30c054171c2b342c48e2dcce0adfa2f35ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 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;
  };  
  
  home H1 manages C1
  {
    attribute M::I i;
  };
};