summaryrefslogtreecommitdiff
path: root/modules/CIAO/connectors/dds4ccm/examples/Hello/Sender/Hello_Sender_Base.idl
blob: ba7024d61a846e8f33a91dbef888ccf701a2d887 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// $Id$

#ifndef HELLO_SENDER_BASE_IDL_
#define HELLO_SENDER_BASE_IDL_

#include "dds4ccm/idl/dds4ccm_Base.idl3"
module CCM_DDS
{
  interface string_Writer
  {
    typedef sequence<string> stringSeq;

    void write (in string an_instance)
      raises (InternalError);
  };
};

#endif