summaryrefslogtreecommitdiff
path: root/CIAO/tests/IDL_Test/Inherited_Servants/Base.idl
blob: 6e570086ee9289c07cfb78d185cd95921a14df37 (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
// $Id$

#ifndef BASE_IDL
#define BASE_IDL

#include <Components.idl>

#pragma ciao lem "BaseE.idl"

module Inherited
{
  interface base_interface {
//     void do_base ();
//     attribute string str_base_interface;
  };
};

module Inherited
{
   component Base_comp
   {
      provides Inherited::base_interface prov_base;
      uses     Inherited::base_interface uses_base;
      attribute long base;
   };
};

#endif