summaryrefslogtreecommitdiff
path: root/TAO/tests/GIOP_Fragments/Big_String_Sequence/Echo.idl
blob: 9dd09203d298d987d649a8cede682796e9d12bab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* -*- C++ -*- */
#if !defined (_ECHO_IDL)
#define _ECHO_IDL

interface Echo
{
  // = TITLE
  // Defines an interface that encapsulates an operation that returns
  // a string sequence, or a wstring sequence, respectively.

  typedef sequence<string> List;
  typedef sequence<wstring> WList;

  List return_list ();
  WList return_wlist ();

  oneway void shutdown ();
};

#endif /* _ECHO_IDL */