summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/tests/IDL_Test/Base/IDL_Test_Interfaces.idl
blob: 516f88a3fce09b6a3114e93fbc55d2fef2639141 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// $Id$

#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