summaryrefslogtreecommitdiff
path: root/CIAO/connectors/ami4ccm/tests/NoConnection/Base/HelloT.idl
blob: c58b0556635ef3e987cdbb3f1cd247e48d160c4e (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
// $Id$

#ifndef HELLO_T_IDL
#define HELLO_T_IDL

#pragma ciao lem "Base/HelloTE.idl"
#pragma ciao ami4ccm interface "HelloT::MyFoo"
#pragma ciao lem "Base/HelloTAE.idl"
#pragma ciao ami4ccm idl "Base/HelloTA.idl"

module HelloT
{
  // Sender/Receiver interface
  interface MyFoo
    {
      void hello (out string answer);

      attribute short rw_attrib;

      readonly attribute short ro_attrib;
    };
};

#endif