summaryrefslogtreecommitdiff
path: root/TAO/tests/Skeleton_Inheritance/idl_2.idl
blob: 867427cfc93c36e4a078d3dcb657a42cb9288f92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12

#include "idl_1.idl"

module Skeleton_Inheritance
{
  interface Interface_2 : Interface_1
  {
    string operation_2 ();

    readonly attribute string attribute_2;
  };
};