summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/ImplRepo/Nestea.idl
blob: 10f642b8e5a7950c3e34035890d1ec9b8f9e23de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Just implements a nice little Nestea server
interface Nestea_Bookshelf
{
  void drink (in long cans);
  // Add a number of cans to the bookshelf.

  void crush (in long cans);
  // Crush some of those cans.

  long bookshelf_size ();
  // How many cans are in the collection?

  string get_praise ();
  // What does the server think of your collection?

  oneway void shutdown();
};