summaryrefslogtreecommitdiff
path: root/TAO/tests/Skeleton_Inheritance/idl_3.idl
blob: edb70e292f6a9ddf506b0cd48ea2a2970e87bc92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
// $Id$
//

#include "idl_2.idl"

module Skeleton_Inheritance
{
  interface Interface_3 : Interface_2
  {
    string operation_3 ();

    oneway void shutdown ();

    attribute short attribute_3;
  };
};