summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/ImplRepo/Simple_Object.idl
blob: a6bd910519369f2ba8337c25817cfacf6af7371b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// $Id$

interface simple_object
  // = TITLE
  //    Defines an interface that encapsulates operations that cube
  //    numbers.
  //
  // = DESCRIPTION
  //    This interface encapsulates an operation that cubes a long.
{
  long simple_method (in long l);
  // cube a long

  oneway void shutdown ();
  // shutdown the application.
};