summaryrefslogtreecommitdiff
path: root/trunk/CIAO/CCF/Example/CIDL/LocalExecutorMapping/test-1.idl
blob: 0a437cb03205d3d75f9340c6e944d6eac6968d78 (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;
  };
};