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

#include "idl_2.idl"

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

    oneway void shutdown ();

    attribute short attribute_3;
  };
};