summaryrefslogtreecommitdiff
path: root/CIAO/connectors/ami4ccm/tests/NoConnection/Base/HelloT.idl
blob: e20201902914f72268f86c7952a0c66d9256f390 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#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