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

#include "idl_1.idl"

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

    readonly attribute string attribute_2;
  };
};