summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/echo/Echo.idl
blob: c0c5211a42779566d40d5c4a78086c269f755938 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* -*- C++ -*- */
// $Id$

#if !defined (_ECHO_IDL)
#define _ECHO_IDL

interface Echo
{
  // = TITLE
  // Defines an interface that encapsulates operations that
  // return the mesg string to be displayed and shuts down the server.

  string echo (in string mesg);
  // This operation returns the message and displays it on the screen.

  oneway void shutdown ();
  // This operation will shutdown the server.
};

#endif /* _ECHO_IDL */