summaryrefslogtreecommitdiff
path: root/TAO/tests/IDL_Inherited_Operation/InheritedOp.idl
blob: b8d54bafcb231c2178a85d80914f2d7a193bb860 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//$Id$

#ifndef INHERITED_OP_IDL
#define INHERITED_OP_IDL

module Outer
{
  module Inner
  {
    interface Base
    {
      void BaseOp ();
    };
  };
};
   
module Outer
{    
  module Inner
  {
    interface Base;
  };
};

module Outer
{
  interface Derived : Inner::Base
  {
    void shutdown ();
  };
};

#endif /* INHERITED_OP_IDL */