summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/ImplRepo/Simple_Object.idl
blob: 34fffdef395cf37d0de6ba8088a7f06a1bb6d122 (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

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