summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/tests/IDL_Test/Base/IDL_Test_Interfaces.idl
blob: c8806788e3e39ddd7dc24f43e003883bcdcb8f13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef IDL_TEST_INTERFACES_IDL
#define IDL_TEST_INTERFACES_IDL

#pragma ciao lem "Base/IDL_Test_InterfacesE.idl"

interface idl_test_base_interface {
  void do_something_base ();
  readonly attribute string base_string_attr;
};

interface idl_test_derived_interface : idl_test_base_interface {
  void do_something_derived ();
  attribute string derived_string_attr;
};

#endif