summaryrefslogtreecommitdiff
path: root/modules/CIAO/tests/CIF/Navigation/Navigation.idl
blob: afd92b3e40391994a61cb8701b7ea55102578edb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// $Id$
#include <Components.idl>

interface foo
{
  void do_foo ();
};

interface foo_inherited : Components::Navigation
{
  void do_inherited_foo ();
};

component Navigation
{
  provides foo navigation_foo;
  provides foo_inherited inherited_foo;
};