summaryrefslogtreecommitdiff
path: root/CIAO/tests/IDL_Test/Inherited_Component/Extended/Base.idl
blob: 7eaae4f57436f6f30e32048c0466ddbbcbbd955f (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
29
30
31
32
33
34
35
36
37
// $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;
  };

  // TODO: derive this interface from a base interface...
  interface derived_interface {
    void do_derived ();

    readonly attribute string str_derived_interface;
  };
};

module Inherited
{
   component Base_comp
   {
      provides Inherited::base_interface prov_base;
      uses     Inherited::base_interface uses_base;

      attribute long base;
   };
};

#endif